aboutsummaryrefslogtreecommitdiff
path: root/sql/hive/src/test/resources/sqlgen/generator_with_ambiguous_names_2.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/generator_with_ambiguous_names_2.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/generator_with_ambiguous_names_2.sql')
-rw-r--r--sql/hive/src/test/resources/sqlgen/generator_with_ambiguous_names_2.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/hive/src/test/resources/sqlgen/generator_with_ambiguous_names_2.sql b/sql/hive/src/test/resources/sqlgen/generator_with_ambiguous_names_2.sql
new file mode 100644
index 0000000000..3c3e858ded
--- /dev/null
+++ b/sql/hive/src/test/resources/sqlgen/generator_with_ambiguous_names_2.sql
@@ -0,0 +1,6 @@
+-- This file is automatically generated by LogicalPlanToSQLSuite.
+SELECT exp.id, parquet_t3.id
+FROM parquet_t3
+LATERAL VIEW OUTER EXPLODE(arr) exp AS id
+--------------------------------------------------------------------------------
+SELECT `gen_attr` AS `id`, `gen_attr` AS `id` FROM (SELECT `gen_attr`, `gen_attr` FROM (SELECT `arr` AS `gen_attr`, `arr2` AS `gen_attr`, `json` AS `gen_attr`, `id` AS `gen_attr` FROM `default`.`parquet_t3`) AS gen_subquery_0 LATERAL VIEW OUTER explode(`gen_attr`) gen_subquery_2 AS `gen_attr`) AS gen_subquery_1