diff options
author | Sébastien Dailly <sebastien@dailly.me> | 2024-12-11 22:04:40 +0100 |
---|---|---|
committer | Sébastien Dailly <sebastien@dailly.me> | 2024-12-12 14:19:48 +0100 |
commit | 39f39919fb4749787393e95503f9814912265a73 (patch) | |
tree | 57745ab257e50f9ef4d6924c3c77d51fd8fb4d4d /tests/analyser_query_test.ml | |
parent | 5a558038874765f20b9dc1bcb1890600e2a2065d (diff) |
Review the consistency request
Diffstat (limited to 'tests/analyser_query_test.ml')
-rw-r--r-- | tests/analyser_query_test.ml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/tests/analyser_query_test.ml b/tests/analyser_query_test.ml index 3559de4..8f531ce 100644 --- a/tests/analyser_query_test.ml +++ b/tests/analyser_query_test.ml @@ -85,10 +85,10 @@ let check_externals = let expected_query = "SELECT 'source'.'id', 'source'.col_1 FROM\n\ - 'source' AS 'source' LEFT JOIN 'other' AS 'other' ON \ - rtrim(upper('source'.col_1)) = 'other'.'key_other' WHERE \ - 'other'.'key_other' IS NULL AND 'source'.col_1 IS NOT NULL AND \ - 'source'.col_1 <> ''" + 'source' AS 'source'\n\ + LEFT JOIN 'other' AS 'other' ON rtrim(upper('source'.col_1)) = \ + 'other'.'key_other' WHERE 'other'.'key_other' IS NULL AND 'source'.col_1 \ + IS NOT NULL AND 'source'.col_1 <> ''" in assert_equal ~printer:Fun.id expected_query query.q @@ -222,10 +222,10 @@ let prepare_insert = assert_equal ~printer:Fun.id expected contents -(** Test a request with a group in a filter. +(** Test a request with a group in a filter. -This generate a CTE expression in order to evaluate the group before loading -the results from the query. *) + This generate a CTE expression in order to evaluate the group before loading + the results from the query. *) let filter_group = "Test filter_group" >:: fun _ -> let c col = Expr.path ImportDataTypes.Path.{ alias = None; column = col } in @@ -253,10 +253,10 @@ WHERE (cte.group0)|} assert_equal ~printer:(fun s -> Printf.sprintf "\n%s" s) expected contents.q -(** Test a request with a group in a filter. +(** Test a request with a group in a filter. -This generate a CTE expression in order to evaluate the group before loading -the results from the query. *) + This generate a CTE expression in order to evaluate the group before loading + the results from the query. *) let filter_group2 = "Test filter_group" >:: fun _ -> let c col = Expr.path ImportDataTypes.Path.{ alias = None; column = col } in |