summaryrefslogtreecommitdiff
path: root/test/sql
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2020-01-01 10:51:15 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2020-01-01 11:11:24 -0500
commit748bf710fdeeed327933a5e7c277c7f79f6053a6 (patch)
tree292759e2bc75732a965cdf544abfb98b787bbd6a /test/sql
parent4e7c789331c9ccf86ad0040175764d361d21b4f3 (diff)
downloadsqlalchemy-748bf710fdeeed327933a5e7c277c7f79f6053a6.tar.gz
Source base cleanups
in trying to apply 2020 copyright to files, the pre-commit hooks complain about random file issues. - remove old corrections.py utility, this had something to do with repairing refs in the sphinx docs - run pre commit hooks on all files - formatting adjustments to work around code formatting collisions (long import lines that zimports can't rewrite correctly) Change-Id: I260744866f69e902eb93665c7c728ee94d3371a2
Diffstat (limited to 'test/sql')
-rw-r--r--test/sql/test_cte.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sql/test_cte.py b/test/sql/test_cte.py
index ff5a12481..4a7a80e77 100644
--- a/test/sql/test_cte.py
+++ b/test/sql/test_cte.py
@@ -918,11 +918,11 @@ class CTETest(fixtures.TestBase, AssertsCompiledSQL):
self.assert_compile(
stmt,
- 'WITH regional_sales AS NOT MATERIALIZED '
+ "WITH regional_sales AS NOT MATERIALIZED "
'(SELECT "order"."order" AS "order" '
'FROM "order") SELECT "order"."order" FROM "order", '
'regional_sales WHERE "order"."order" > regional_sales."order"',
- dialect="postgresql"
+ dialect="postgresql",
)
def test_suffixes(self):