Skip to content

Commit

Permalink
Rename postgresql_connector to postgresql product test group
Browse files Browse the repository at this point in the history
  • Loading branch information
kokosing committed Oct 1, 2019
1 parent f33591c commit 718bcb5
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions presto-product-tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ where profile is one of either:
a single Docker container, a single node installation of Presto
also running on a single Docker container and one running SQL Server server.
While running tests on ``singlenode-sqlserver`` make sure to exclude
`mysql_connector` and `postgresql_connector` tests i.e.
`-x mysql_connector, postgresql_connector`.
`mysql_connector` and `postgresql` tests i.e.
`-x mysql_connector, postgresql`.
### Hadoop docker image used for testing
The default Hadoop/Hive docker image used for testing is defined in `conf/common/compose-commons.sh` and can be controlled
Expand Down
2 changes: 1 addition & 1 deletion presto-product-tests/bin/product-tests-suite-1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ exit_code=0

presto-product-tests/bin/run_on_docker.sh \
multinode \
-x quarantine,big_query,storage_formats,profile_specific_tests,tpcds,cassandra,mysql_connector,postgresql_connector,mysql,kafka,simba_jdbc \
-x quarantine,big_query,storage_formats,profile_specific_tests,tpcds,cassandra,mysql_connector,postgresql,mysql,kafka,simba_jdbc \
|| exit_code=1

exit "${exit_code}"
2 changes: 1 addition & 1 deletion presto-product-tests/bin/product-tests-suite-3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ presto-product-tests/bin/run_on_docker.sh \

presto-product-tests/bin/run_on_docker.sh \
singlenode-postgresql \
-g postgresql_connector \
-g postgresql \
|| exit_code=1

presto-product-tests/bin/run_on_docker.sh \
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- database: presto; groups: postgresql_connector; queryType: SELECT; tables: postgres.public.real_table_psql
-- database: presto; groups: postgresql; queryType: SELECT; tables: postgres.public.real_table_psql
--!
describe postgresql.public.real_table_psql
--!
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- database: presto; groups: postgresql_connector; queryType: SELECT; tables: postgres.public.workers_psql
-- database: presto; groups: postgresql; queryType: SELECT; tables: postgres.public.workers_psql
--!
describe postgresql.public.workers_psql
--!
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- database: presto; groups: postgresql_connector; tables: postgres.public.workers_psql
-- database: presto; groups: postgresql; tables: postgres.public.workers_psql
--!
select t1.last_name, t2.first_name from postgresql.public.workers_psql t1, postgresql.public.workers_psql t2 where t1.id_department = t2.id_employee
--!
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- database: presto; groups: postgresql_connector; tables: postgres.public.workers_psql
-- database: presto; groups: postgresql; tables: postgres.public.workers_psql
--!
select t1.first_name, t2.name from postgresql.public.workers_psql t1, tpch.sf1.nation t2 where t1.id_department = t2.nationkey
--!
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- database: presto; groups: postgresql_connector; tables: postgres.public.workers_psql
-- database: presto; groups: postgresql; tables: postgres.public.workers_psql
--!
select * from postgresql.public.workers_psql
--!
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- database: presto; groups: postgresql_connector; tables: postgres.public.real_table_psql
-- database: presto; groups: postgresql; tables: postgres.public.real_table_psql
--!
select * from postgresql.public.real_table_psql
--!
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- database: presto; groups: postgresql_connector; queryType: SELECT;
-- database: presto; groups: postgresql; queryType: SELECT;
--!
show schemas from postgresql
--!
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- database: presto; groups: postgresql_connector; tables: postgres.public.datatype_psql,postgres.public.workers_psql,postgres.public.real_table_psql
-- database: presto; groups: postgresql; tables: postgres.public.datatype_psql,postgres.public.workers_psql,postgres.public.real_table_psql
-- queryType: SELECT;
--!
show tables from postgresql.public
Expand Down

0 comments on commit 718bcb5

Please sign in to comment.