Skip to content
Permalink
Browse files
replace hardcoded string "#sql" with tmp_file_prefix
  • Loading branch information
vaintroub committed Jan 14, 2019
1 parent 24bc8ed commit 32bb579
Showing 1 changed file with 1 addition and 1 deletion.
@@ -2400,7 +2400,7 @@ check_if_skip_table(
tbname = ptr + 1;
}

if (strncmp(tbname, "#sql",4) == 0) {
if (strncmp(tbname, tmp_file_prefix, tmp_file_prefix_length) == 0) {
return TRUE;
}

0 comments on commit 32bb579

Please sign in to comment.