Skip to content

Commit

Permalink
remove unused ss_data
Browse files Browse the repository at this point in the history
  • Loading branch information
ngoldbaum committed Aug 25, 2023
1 parent 391af92 commit 2e7a766
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions stringdtype/stringdtype/src/static_string.c
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,3 @@ ss_isnull(const ss *in)
}
return 0;
}

const char *
ss_data(const ss *in, const char *default_str)
{
if (ss_isnull(in)) {
return default_str;
}

return in->buf;
}

0 comments on commit 2e7a766

Please sign in to comment.