diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-10-16 17:31:24 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-10-16 17:31:24 -0400 |
commit | 85eef6345dc591887e783b73b6f5c337ab5703c3 (patch) | |
tree | f6a6e1280ea96de0684ecb657af833055fe635d8 /tests/sql_indent.ur | |
parent | ac3729041810d3277c5e3ad68b93f1208d3cd602 (diff) |
Fixing overzealous SQL paren-nester
Diffstat (limited to 'tests/sql_indent.ur')
-rw-r--r-- | tests/sql_indent.ur | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/sql_indent.ur b/tests/sql_indent.ur index dec1c2d5..958fb070 100644 --- a/tests/sql_indent.ur +++ b/tests/sql_indent.ur @@ -1,7 +1,7 @@ table t1 : {A : int, B : string, C : float} val q1 = (SELECT * - FROM t1) + FROM t1 WHERE A = 0) val a1 = (INSERT INTO t1 @@ -9,7 +9,7 @@ val a1 = (INSERT INTO t1 val a2 = (UPDATE t1 SET A = 3, B = "4", C = 5.0) - + val a3 = (DELETE FROM t1 WHERE B <> "good") |