Skip to content

Commit

Permalink
Remove unused str
Browse files Browse the repository at this point in the history
Signed-off-by: Chenxiao Wang <[email protected]>
  • Loading branch information
Chenxiao Wang committed Dec 19, 2024
1 parent 6d27956 commit 8921cf3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/backend/parser/parse_func.c
Original file line number Diff line number Diff line change
Expand Up @@ -2059,11 +2059,10 @@ funcname_signature_string(const char *funcname, int nargs,
int numposargs;
ListCell *lc;
int i;
const char *ptr;

initStringInfo(&argbuf);

if (sql_dialect == SQL_DIALECT_TSQL && remove_db_name_in_schema_hook && ptr) {
if (sql_dialect == SQL_DIALECT_TSQL && remove_db_name_in_schema_hook) {
funcname = (*remove_db_name_in_schema_hook)(funcname);
}

Expand Down

0 comments on commit 8921cf3

Please sign in to comment.