aboutsummaryrefslogtreecommitdiff
path: root/sql/hive/src/test/resources/sqlgen/window_with_the_same_window_with_agg_filter.sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql/hive/src/test/resources/sqlgen/window_with_the_same_window_with_agg_filter.sql')
-rw-r--r--sql/hive/src/test/resources/sqlgen/window_with_the_same_window_with_agg_filter.sql7
1 files changed, 0 insertions, 7 deletions
diff --git a/sql/hive/src/test/resources/sqlgen/window_with_the_same_window_with_agg_filter.sql b/sql/hive/src/test/resources/sqlgen/window_with_the_same_window_with_agg_filter.sql
deleted file mode 100644
index e01bc034d3..0000000000
--- a/sql/hive/src/test/resources/sqlgen/window_with_the_same_window_with_agg_filter.sql
+++ /dev/null
@@ -1,7 +0,0 @@
--- This file is automatically generated by LogicalPlanToSQLSuite.
-SELECT key, value,
-DENSE_RANK() OVER (DISTRIBUTE BY key SORT BY key, value) AS dr,
-COUNT(key) OVER(DISTRIBUTE BY key SORT BY key, value) AS ca
-FROM parquet_t1
---------------------------------------------------------------------------------
-SELECT `gen_attr_0` AS `key`, `gen_attr_1` AS `value`, `gen_attr_2` AS `dr`, `gen_attr_3` AS `ca` FROM (SELECT `gen_attr_0`, `gen_attr_1`, `gen_attr_2`, `gen_attr_3` FROM (SELECT gen_subquery_1.`gen_attr_0`, gen_subquery_1.`gen_attr_1`, DENSE_RANK() OVER (PARTITION BY `gen_attr_0` ORDER BY `gen_attr_0` ASC NULLS FIRST, `gen_attr_1` ASC NULLS FIRST ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS `gen_attr_2`, count(`gen_attr_0`) OVER (PARTITION BY `gen_attr_0` ORDER BY `gen_attr_0` ASC NULLS FIRST, `gen_attr_1` ASC NULLS FIRST RANGE BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS `gen_attr_3` FROM (SELECT `gen_attr_0`, `gen_attr_1` FROM (SELECT `key` AS `gen_attr_0`, `value` AS `gen_attr_1` FROM `default`.`parquet_t1`) AS gen_subquery_0) AS gen_subquery_1) AS gen_subquery_2) AS parquet_t1