diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pgbench/pgbench.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pgbench/pgbench.c b/src/bin/pgbench/pgbench.c index 125f3c7bbbe..3cafd88ac53 100644 --- a/src/bin/pgbench/pgbench.c +++ b/src/bin/pgbench/pgbench.c @@ -5599,7 +5599,7 @@ skip_sql_comments(char *sql_command) * struct. */ static Command * -create_sql_command(PQExpBuffer buf, const char *source) +create_sql_command(PQExpBuffer buf) { Command *my_command; char *p = skip_sql_comments(buf->data); @@ -5992,7 +5992,7 @@ ParseScript(const char *script, const char *desc, int weight) sr = psql_scan(sstate, &line_buf, &prompt); /* If we collected a new SQL command, process that */ - command = create_sql_command(&line_buf, desc); + command = create_sql_command(&line_buf); /* store new command */ if (command) |