You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by GitBox <gi...@apache.org> on 2019/07/11 05:55:52 UTC

[GitHub] [spark] wangyum opened a new pull request #25109: [SPARK-28343][SQL][TEST] PostgreSQL test should enable cartesian product

wangyum opened a new pull request #25109: [SPARK-28343][SQL][TEST] PostgreSQL test should enable cartesian product
URL: https://github.com/apache/spark/pull/25109
 
 
   ## What changes were proposed in this pull request?
   
   This pr enables cartesian product for PostgreSQL test.
   
   ## How was this patch tested?
   
   manual tests:
   Run `test.sql` in [pgSQL](https://github.com/apache/spark/tree/master/sql/core/src/test/resources/sql-tests/inputs/pgSQL) directory and in [inputs](https://github.com/apache/spark/tree/master/sql/core/src/test/resources/sql-tests/inputs) directory:
   ```sql
   cat <<EOF > test.sql
   create or replace temporary view t1 as
   select * from (values(1), (2)) as v (val);
   
   create or replace temporary view t2 as
   select * from (values(2), (1)) as v (val);
   
   select t1.*, t2.* from t1 join t2;
   EOF
   ```
   
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org
For additional commands, e-mail: reviews-help@spark.apache.org