Skip to content

Commit

Permalink
chore: update sqlness test after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
discord9 committed Aug 27, 2024
1 parent 5934212 commit 3cf2157
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 1 addition & 2 deletions tests/cases/standalone/common/flow/flow_basic.result
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ admin 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;

+---------------------------------+---------------------+---------------------+
Expand Down Expand Up @@ -72,7 +71,7 @@ admin flush_flow('test_numbers_basic');
| 1 |
+----------------------------------------+

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

+---------------------------------+---------------------+---------------------+
Expand Down
1 change: 1 addition & 0 deletions tests/cases/standalone/common/flow/flow_basic.sql
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ VALUES

admin flush_flow('test_numbers_basic');

-- note that this quote-unquote column is a column-name, **not** a aggregation expr, 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
4 changes: 2 additions & 2 deletions tests/cases/standalone/common/flow/flow_call_df_func.result
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ admin flush_flow('test_numbers_df_func');
| 1 |
+------------------------------------------+

-- note that this quote-unquote column is a column-name, generated by datafusion
-- note that this quote-unquote column is a column-name, **not** a aggregation expr, 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 @@ -71,7 +71,7 @@ admin flush_flow('test_numbers_df_func');
| 1 |
+------------------------------------------+

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

+----------------------------------------+---------------------+---------------------+
Expand Down
2 changes: 2 additions & 0 deletions tests/cases/standalone/common/flow/flow_call_df_func.sql
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ VALUES
-- flush flow to make sure that table is created and data is inserted
admin flush_flow('test_numbers_df_func');

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

admin flush_flow('test_numbers_df_func');
Expand All @@ -32,6 +33,7 @@ VALUES

admin flush_flow('test_numbers_df_func');

-- note that this quote-unquote column is a column-name, **not** a aggregation expr, 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 3cf2157

Please sign in to comment.