Skip to content

Commit

Permalink
remove debug logs
Browse files Browse the repository at this point in the history
Signed-off-by: Tanzeel Khan <[email protected]>
  • Loading branch information
tanscorpio7 committed Oct 7, 2023
1 parent 0533c84 commit 4b9a27a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/backend/utils/fmgr/fmgr.c
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ fmgr_security_definer(PG_FUNCTION_ARGS)
int non_tsql_proc_count = 0;
void *newextra = NULL;
char *cacheTupleProcname = NULL;
char *old_search_path = false;
char *old_search_path = NULL;

if (!fcinfo->flinfo->fn_extra)
{
Expand Down Expand Up @@ -895,7 +895,6 @@ fmgr_security_definer(PG_FUNCTION_ARGS)
if(sql_dialect == tsql_dialect && old_search_path)
{
namespace_search_path = old_search_path;
elog(LOG, "-------------> %s", old_search_path);
assign_search_path(old_search_path, newextra);
}
sql_dialect = sql_dialect_value_old;
Expand All @@ -913,7 +912,6 @@ fmgr_security_definer(PG_FUNCTION_ARGS)
if(sql_dialect == tsql_dialect && old_search_path)
{
namespace_search_path = old_search_path;
elog(LOG, "-------------> %s", old_search_path);
assign_search_path(old_search_path, newextra);
}

Expand Down

0 comments on commit 4b9a27a

Please sign in to comment.