* Read a boolean expression, but do nothing with it. * * Note: conditional stack's top state must be INACTIVE, else lexer will * expand variables and backticks, which we do not want here. */
| 2908 | * expand variables and backticks, which we do not want here. |
| 2909 | */ |
| 2910 | static void |
| 2911 | ignore_boolean_expression(PsqlScanState scan_state) |
| 2912 | { |
| 2913 | PQExpBuffer buf = gather_boolean_expression(scan_state); |
| 2914 | |
| 2915 | destroyPQExpBuffer(buf); |
| 2916 | } |
| 2917 | |
| 2918 | /* |
| 2919 | * Read and discard "normal" slash command options. |
no test coverage detected