Skip to content

Commit

Permalink
test: add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
discord9 committed Aug 22, 2024
1 parent b559bb1 commit 621692b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 2 additions & 0 deletions tests/cases/standalone/common/flow/flow_basic.result
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ select flush_flow('test_numbers_basic')<=1;
| true |
+----------------------------------------------------+

-- note that this quote-unquote column is a column-name, generated by datafusion
SELECT "SUM(numbers_input_basic.number)", window_start, window_end FROM out_num_cnt_basic;

+---------------------------------+---------------------+---------------------+
Expand Down Expand Up @@ -71,6 +72,7 @@ select flush_flow('test_numbers_basic')<=1;
| true |
+----------------------------------------------------+

-- note that this quote-unquote column is a column-name, generated by datafusion
SELECT "SUM(numbers_input_basic.number)", window_start, window_end FROM out_num_cnt_basic;

+---------------------------------+---------------------+---------------------+
Expand Down
4 changes: 2 additions & 2 deletions tests/cases/standalone/common/flow/flow_basic.sql
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ VALUES
(22, "2021-07-01 00:00:00.600");

select flush_flow('test_numbers_basic')<=1;

-- note that this quote-unquote column is a column-name, generated by datafusion
SELECT "SUM(numbers_input_basic.number)", window_start, window_end FROM out_num_cnt_basic;

select flush_flow('test_numbers_basic')<=1;
Expand All @@ -32,7 +32,7 @@ VALUES
(24,"2021-07-01 00:00:01.500");

select flush_flow('test_numbers_basic')<=1;

-- note that this quote-unquote column is a column-name, generated by datafusion
SELECT "SUM(numbers_input_basic.number)", window_start, window_end FROM out_num_cnt_basic;

DROP FLOW test_numbers_basic;
Expand Down
2 changes: 2 additions & 0 deletions tests/cases/standalone/common/flow/flow_call_df_func.result
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ select flush_flow('test_numbers_df_func')<=1;
| true |
+------------------------------------------------------+

-- note that this quote-unquote column is a column-name, generated by datafusion
SELECT "SUM(abs(numbers_input_df_func.number))", window_start, window_end FROM out_num_cnt_df_func;

+----------------------------------------+---------------------+---------------------+
Expand Down Expand Up @@ -70,6 +71,7 @@ select flush_flow('test_numbers_df_func')<=1;
| true |
+------------------------------------------------------+

-- note that this quote-unquote column is a column-name, generated by datafusion
SELECT "SUM(abs(numbers_input_df_func.number))", window_start, window_end FROM out_num_cnt_df_func;

+----------------------------------------+---------------------+---------------------+
Expand Down
4 changes: 2 additions & 2 deletions tests/cases/standalone/common/flow/flow_call_df_func.sql
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ VALUES

-- flush flow to make sure that table is created and data is inserted
select flush_flow('test_numbers_df_func')<=1;

-- note that this quote-unquote column is a column-name, generated by datafusion
SELECT "SUM(abs(numbers_input_df_func.number))", window_start, window_end FROM out_num_cnt_df_func;

select flush_flow('test_numbers_df_func')<=1;
Expand All @@ -31,7 +31,7 @@ VALUES
(-24,"2021-07-01 00:00:01.500");

select flush_flow('test_numbers_df_func')<=1;

-- note that this quote-unquote column is a column-name, generated by datafusion
SELECT "SUM(abs(numbers_input_df_func.number))", window_start, window_end FROM out_num_cnt_df_func;

DROP FLOW test_numbers_df_func;
Expand Down

0 comments on commit 621692b

Please sign in to comment.