summaryrefslogtreecommitdiff
path: root/test/dialect/postgresql/test_dialect.py
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2017-12-18 12:57:18 -0500
committerGerrit Code Review <gerrit@ci.zzzcomputing.com>2017-12-18 12:57:18 -0500
commitb60461fb95bc78da16c5eb2948e1aff170b78bbc (patch)
treed993bbe5e730f6d7477e903147b1be0bfd1c0150 /test/dialect/postgresql/test_dialect.py
parenta5d027ab665585f65581fdc6fd2bd00874d3c714 (diff)
parent756d5782870029f2d97b1aa171abd61dbf4cbcb4 (diff)
downloadsqlalchemy-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.py3
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")