aboutsummaryrefslogtreecommitdiff
path: root/sql/hive/src/test/resources/sqlgen/window_with_join.sql
diff options
context:
space:
mode:
authorDongjoon Hyun <dongjoon@apache.org>2016-07-18 17:17:37 -0700
committerReynold Xin <rxin@databricks.com>2016-07-18 17:17:37 -0700
commitea78edb80bf46e925d53e2aec29666c4eeb66188 (patch)
tree49dcd9199c4443b42f91e84a0a9f7b794d8846d9 /sql/hive/src/test/resources/sqlgen/window_with_join.sql
parent75f0efe74d0c9a7acb525339c5184b99fee4dafc (diff)
downloadspark-ea78edb80bf46e925d53e2aec29666c4eeb66188.tar.gz
spark-ea78edb80bf46e925d53e2aec29666c4eeb66188.tar.bz2
spark-ea78edb80bf46e925d53e2aec29666c4eeb66188.zip
[SPARK-16590][SQL] Improve LogicalPlanToSQLSuite to check generated SQL directly
## What changes were proposed in this pull request? This PR improves `LogicalPlanToSQLSuite` to check the generated SQL directly by **structure**. So far, `LogicalPlanToSQLSuite` relies on `checkHiveQl` to ensure the **successful SQL generation** and **answer equality**. However, it does not guarantee the generated SQL is the same or will not be changed unnoticeably. ## How was this patch tested? Pass the Jenkins. This is only a testsuite change. Author: Dongjoon Hyun <dongjoon@apache.org> Closes #14235 from dongjoon-hyun/SPARK-16590.
Diffstat (limited to 'sql/hive/src/test/resources/sqlgen/window_with_join.sql')
-rw-r--r--sql/hive/src/test/resources/sqlgen/window_with_join.sql5
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/hive/src/test/resources/sqlgen/window_with_join.sql b/sql/hive/src/test/resources/sqlgen/window_with_join.sql
new file mode 100644
index 0000000000..00c45c8fea
--- /dev/null
+++ b/sql/hive/src/test/resources/sqlgen/window_with_join.sql
@@ -0,0 +1,5 @@
+-- This file is automatically generated by LogicalPlanToSQLSuite.
+SELECT x.key, MAX(y.key) OVER (PARTITION BY x.key % 5 ORDER BY x.key)
+FROM parquet_t1 x JOIN parquet_t1 y ON x.key = y.key
+--------------------------------------------------------------------------------
+SELECT `gen_attr` AS `key`, `gen_attr` AS `max(key) OVER (PARTITION BY (key % CAST(5 AS BIGINT)) ORDER BY key ASC RANGE BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW)` FROM (SELECT `gen_attr`, `gen_attr` FROM (SELECT gen_subquery_2.`gen_attr`, gen_subquery_2.`gen_attr`, gen_subquery_2.`gen_attr`, max(`gen_attr`) OVER (PARTITION BY `gen_attr` ORDER BY `gen_attr` ASC RANGE BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS `gen_attr` FROM (SELECT `gen_attr`, `gen_attr`, (`gen_attr` % CAST(5 AS BIGINT)) AS `gen_attr` FROM (SELECT `key` AS `gen_attr`, `value` AS `gen_attr` FROM `default`.`parquet_t1`) AS gen_subquery_0 INNER JOIN (SELECT `key` AS `gen_attr`, `value` AS `gen_attr` FROM `default`.`parquet_t1`) AS gen_subquery_1 ON (`gen_attr` = `gen_attr`)) AS gen_subquery_2) AS gen_subquery_3) AS x