Adding upstream version 25.7.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
f9dae8e951
commit
8356f462bb
102 changed files with 52995 additions and 52070 deletions
|
@ -391,6 +391,17 @@ class TestTSQL(Validator):
|
|||
self.validate_identity("HASHBYTES('MD2', 'x')")
|
||||
self.validate_identity("LOG(n, b)")
|
||||
|
||||
self.validate_all(
|
||||
"STDEV(x)",
|
||||
read={
|
||||
"": "STDDEV(x)",
|
||||
},
|
||||
write={
|
||||
"": "STDDEV(x)",
|
||||
"tsql": "STDEV(x)",
|
||||
},
|
||||
)
|
||||
|
||||
def test_option(self):
|
||||
possible_options = [
|
||||
"HASH GROUP",
|
||||
|
@ -888,6 +899,14 @@ class TestTSQL(Validator):
|
|||
},
|
||||
)
|
||||
|
||||
for colstore in ("NONCLUSTERED COLUMNSTORE", "CLUSTERED COLUMNSTORE"):
|
||||
self.validate_identity(f"CREATE {colstore} INDEX index_name ON foo.bar")
|
||||
|
||||
self.validate_identity(
|
||||
"CREATE COLUMNSTORE INDEX index_name ON foo.bar",
|
||||
"CREATE NONCLUSTERED COLUMNSTORE INDEX index_name ON foo.bar",
|
||||
)
|
||||
|
||||
def test_insert_cte(self):
|
||||
self.validate_all(
|
||||
"INSERT INTO foo.bar WITH cte AS (SELECT 1 AS one) SELECT * FROM cte",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue