diff options
author | Teodor Sigaev <teodor@sigaev.ru> | 2018-03-22 17:42:03 +0300 |
---|---|---|
committer | Teodor Sigaev <teodor@sigaev.ru> | 2018-03-22 17:42:03 +0300 |
commit | f67b113ac62777d18cd20d3c4d05be964301b936 (patch) | |
tree | bd65429918d10cf374292620ae726adba50f7617 /src/bin/psql/command.h | |
parent | b5db1d93d2a6e2d3186f8798a5d06e07b7536a1d (diff) |
Add \if support to pgbench
Patch adds \if to pgbench as it done for psql. Implementation shares condition
stack code with psql, so, this code is moved to fe_utils directory.
Author: Fabien COELHO with minor editorization by me
Review by: Vik Fearing, Fedor Sigaev
Discussion: https://www.postgresql.org/message-id/flat/alpine.DEB.2.20.1711252200190.28523@lancre
Diffstat (limited to 'src/bin/psql/command.h')
-rw-r--r-- | src/bin/psql/command.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/command.h b/src/bin/psql/command.h index 95ad02dfe23..29a8edd5a5d 100644 --- a/src/bin/psql/command.h +++ b/src/bin/psql/command.h @@ -10,7 +10,7 @@ #include "fe_utils/print.h" #include "fe_utils/psqlscan.h" -#include "conditional.h" +#include "fe_utils/conditional.h" typedef enum _backslashResult |