summaryrefslogtreecommitdiff
path: root/src/bin/psql/command.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/psql/command.h')
-rw-r--r--src/bin/psql/command.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/bin/psql/command.h b/src/bin/psql/command.h
index d0c32645f14..e8ea8473e84 100644
--- a/src/bin/psql/command.h
+++ b/src/bin/psql/command.h
@@ -10,6 +10,7 @@
#include "fe_utils/print.h"
#include "fe_utils/psqlscan.h"
+#include "conditional.h"
typedef enum _backslashResult
@@ -25,7 +26,9 @@ typedef enum _backslashResult
extern backslashResult HandleSlashCmds(PsqlScanState scan_state,
- PQExpBuffer query_buf);
+ ConditionalStack cstack,
+ PQExpBuffer query_buf,
+ PQExpBuffer previous_buf);
extern int process_file(char *filename, bool use_relative_path);