We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad2c98d commit 224e64dCopy full SHA for 224e64d
1 file changed
tests/dialects/test_databricks.py
@@ -492,14 +492,13 @@ def test_overlay(self):
492
)
493
494
def test_set_variable(self):
495
- # Both SET VAR and SET VARIABLE are synonyms; both normalize to SET VARIABLE on output
496
self.validate_identity("SET VAR v = 5", "SET VARIABLE v = 5")
497
self.validate_identity("SET VARIABLE v = 5")
498
self.validate_identity("SET VARIABLE v1 = 1, v2 = '2'")
499
self.validate_identity("SET VARIABLE (v1, v2) = (SELECT 1, 2)")
500
self.validate_identity("SET VARIABLE v = (SELECT MAX(c1) FROM VALUES (1), (2) AS T(c1))")
501
self.validate_identity("SET VARIABLE v = DEFAULT")
502
-
+
503
def test_iff(self):
504
# IFF is a synonym for IF in Databricks; it normalizes to IF on output
505
self.validate_all(
0 commit comments