Adding upstream version 23.10.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
27c061b7af
commit
efe1f986ea
91 changed files with 52881 additions and 50396 deletions
|
@ -69,12 +69,12 @@ class TestTranspile(unittest.TestCase):
|
|||
self.validate(
|
||||
"SELECT a, b, c FROM (SELECT a, b, c FROM t)",
|
||||
"SELECT\n"
|
||||
" a\n"
|
||||
" a\n"
|
||||
" , b\n"
|
||||
" , c\n"
|
||||
"FROM (\n"
|
||||
" SELECT\n"
|
||||
" a\n"
|
||||
" a\n"
|
||||
" , b\n"
|
||||
" , c\n"
|
||||
" FROM t\n"
|
||||
|
@ -86,13 +86,13 @@ class TestTranspile(unittest.TestCase):
|
|||
)
|
||||
self.validate(
|
||||
"SELECT FOO, BAR, BAZ",
|
||||
"SELECT\n FOO\n , BAR\n , BAZ",
|
||||
"SELECT\n FOO\n , BAR\n , BAZ",
|
||||
leading_comma=True,
|
||||
pretty=True,
|
||||
)
|
||||
self.validate(
|
||||
"SELECT FOO, /*x*/\nBAR, /*y*/\nBAZ",
|
||||
"SELECT\n FOO /* x */\n , BAR /* y */\n , BAZ",
|
||||
"SELECT\n FOO /* x */\n , BAR /* y */\n , BAZ",
|
||||
leading_comma=True,
|
||||
pretty=True,
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue