aboutsummaryrefslogtreecommitdiff
path: root/tests/analyser_query_test.ml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/analyser_query_test.ml')
-rw-r--r--tests/analyser_query_test.ml20
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