(executor, pgspecial)
| 87 | |
| 88 | @dbtest |
| 89 | def test_expanded_slash_G(executor, pgspecial): |
| 90 | # Tests whether we reset the expanded output after a \G. |
| 91 | run(executor, """create table test(a boolean)""") |
| 92 | run(executor, """insert into test values(True)""") |
| 93 | run(executor, r"""select * from test \G""", pgspecial=pgspecial) |
| 94 | assert pgspecial.expanded_output is False |
| 95 | |
| 96 | |
| 97 | @dbtest |