diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2017-12-18 12:57:18 -0500 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@ci.zzzcomputing.com> | 2017-12-18 12:57:18 -0500 |
| commit | b60461fb95bc78da16c5eb2948e1aff170b78bbc (patch) | |
| tree | d993bbe5e730f6d7477e903147b1be0bfd1c0150 /test/dialect/postgresql/test_dialect.py | |
| parent | a5d027ab665585f65581fdc6fd2bd00874d3c714 (diff) | |
| parent | 756d5782870029f2d97b1aa171abd61dbf4cbcb4 (diff) | |
| download | sqlalchemy-b60461fb95bc78da16c5eb2948e1aff170b78bbc.tar.gz | |
Merge "Add TRUNCATE to postgres autocommit regexp"
Diffstat (limited to 'test/dialect/postgresql/test_dialect.py')
| -rw-r--r-- | test/dialect/postgresql/test_dialect.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/dialect/postgresql/test_dialect.py b/test/dialect/postgresql/test_dialect.py index 29aa62e3f..3db7fef48 100644 --- a/test/dialect/postgresql/test_dialect.py +++ b/test/dialect/postgresql/test_dialect.py @@ -418,3 +418,6 @@ class AutocommitTextTest(test_execute.AutocommitTextTest): def test_revoke(self): self._test_keyword("REVOKE USAGE ON SCHEMA fooschema FROM foorole") + + def test_truncate(self): + self._test_keyword("TRUNCATE footable") |
