From a80881c1609da2f21339dd9f9f7a4b48e1520372 Mon Sep 17 00:00:00 2001 From: kilianmh Date: Mon, 29 Apr 2024 18:22:48 +0200 Subject: [PATCH] Fix: add missing closing parentheses --- s-sql/tests/test-tables.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/s-sql/tests/test-tables.lisp b/s-sql/tests/test-tables.lisp index 2c1287d..369cb9f 100644 --- a/s-sql/tests/test-tables.lisp +++ b/s-sql/tests/test-tables.lisp @@ -911,7 +911,7 @@ (:select '* :from 'businesses :where (:= 'type "distribution")) - ((:on-commit :preserve-rows))) + ((:on-commit :preserve-rows)))) "CREATE TEMP TABLE distributors ON COMMIT PRESERVE ROWS AS ((SELECT * FROM businesses WHERE (type = E'distribution')))")) ;; creates a table as a duplicate of another with and without data and with control over what happens on commit