summaryrefslogtreecommitdiffstats
path: root/tests/dialects/test_dialect.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2022-10-04 09:37:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2022-10-04 09:37:14 +0000
commit7b29f6168bf9fcb2d886447066a9bb51675e5665 (patch)
treeff74c45f55651c73cce0cd58145667de43db9d12 /tests/dialects/test_dialect.py
parentReleasing debian version 6.2.6-1. (diff)
downloadsqlglot-7b29f6168bf9fcb2d886447066a9bb51675e5665.tar.xz
sqlglot-7b29f6168bf9fcb2d886447066a9bb51675e5665.zip
Merging upstream version 6.2.8.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/dialects/test_dialect.py')
-rw-r--r--tests/dialects/test_dialect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/dialects/test_dialect.py b/tests/dialects/test_dialect.py
index e0ec824..a9a313c 100644
--- a/tests/dialects/test_dialect.py
+++ b/tests/dialects/test_dialect.py
@@ -1009,7 +1009,7 @@ class TestDialect(Validator):
self.validate_all(
"SELECT * FROM VALUES ('x'), ('y') AS t(z)",
write={
- "spark": "SELECT * FROM (VALUES ('x'), ('y')) AS t(z)",
+ "spark": "SELECT * FROM VALUES ('x'), ('y') AS t(z)",
},
)
self.validate_all(