mirror of https://github.com/citusdata/citus.git
30 lines
1013 B
SQL
30 lines
1013 B
SQL
|
|
-- Tests that check that our query functionality behaves as expected when the
|
|
-- table schema is modified via ALTER statements.
|
|
|
|
SELECT count(*) FROM customer;
|
|
SELECT * FROM customer LIMIT 2;
|
|
|
|
ALTER TABLE customer ADD COLUMN new_column1 INTEGER;
|
|
ALTER TABLE customer ADD COLUMN new_column2 INTEGER;
|
|
SELECT count(*) FROM customer;
|
|
SELECT * FROM customer LIMIT 2;
|
|
|
|
ALTER TABLE customer DROP COLUMN new_column1;
|
|
ALTER TABLE customer DROP COLUMN new_column2;
|
|
SELECT count(*) FROM customer;
|
|
SELECT * FROM customer LIMIT 2;
|
|
|
|
-- Verify joins work with dropped columns.
|
|
SELECT count(*) FROM customer, orders WHERE c_custkey = o_custkey;
|
|
|
|
-- Test joinExpr aliases by performing an outer-join. This code path is
|
|
-- currently not exercised, but we are adding this test to catch this bug when
|
|
-- we start supporting outer joins.
|
|
|
|
SELECT c_custkey
|
|
FROM (customer LEFT OUTER JOIN orders ON (c_custkey = o_custkey)) AS
|
|
test(c_custkey, c_nationkey)
|
|
INNER JOIN lineitem ON (test.c_custkey = l_orderkey)
|
|
LIMIT 10;
|