Nils Dijk
caabbf4b84
Table access method support for distributed tables
2020-10-16 12:02:25 -07:00
Philip Dubé
212ae7163f
Fix non deterministic collation test to work with ancient libicu versions
...
CentOS 7's libicu is too old for und-u-ks-level2
@colStrength=secondary works with both older & newer versions of libicu
2020-08-07 12:34:32 +00:00
Philip Dubé
b6b3c1bc17
Fix COPY TO's COPY (SELECT) with distributed table having generated columns
...
It's necessary to omit generated columns from output
2020-04-28 14:40:47 +00:00
SaitTalhaNisanci
164c00cf08
Fix typo: longer visible -> no longer visible ( #3803 )
2020-04-27 16:32:46 +03:00
Hanefi Önaldı
0c5d0cfee9
Notice message to help truncate local data after distribution
2020-04-17 13:21:34 +03:00
Philip Dubé
34f241af16
Fix create_distributed_table on a table using GENERATED ALWAYS AS
...
If the generated column does not come at the end of the column list,
columnNameList doesn't line up with the column indexes. Seek past
CREATE TABLE test_table (
test_id int PRIMARY KEY,
gen_n int GENERATED ALWAYS AS (1) STORED,
created_at TIMESTAMPTZ NOT NULL DEFAULT now()
);
SELECT create_distributed_table('test_table', 'test_id');
Would raise ERROR: cannot cast 23 to 1184
2020-02-28 09:34:26 -08:00
Onder Kalaci
fc07bd7c5b
Update regression tests-3
...
Update the regression tests which only change in PG 12.
2020-01-16 12:28:15 +01:00
Jelte Fennema
7c3e8e150e
Normalize tests: s/Subplan [0-9]+\_/Subplan XXX\_/g
2020-01-06 09:32:03 +01:00
Jelte Fennema
7730bd449c
Normalize tests: Remove trailing whitespace
2020-01-06 09:32:03 +01:00
Jelte Fennema
6353c9907f
Normalize tests: Line info varies between versions
2020-01-06 09:32:03 +01:00
Jelte Fennema
7f3de68b0d
Normalize tests: header separator length
2020-01-06 09:32:03 +01:00
Jelte Fennema
8c5c0dd74c
Normalize tests: s/localhost:[0-9]+/localhost:xxxxx/g
2020-01-03 11:40:50 +01:00
Philip Dubé
fcf2fd819b
Add distributioncolumncollation to to pg_dist_colocation
...
Use partition column's collation for range distributed tables
Don't allow non deterministic collations for hash distributed tables
CoPartitionedTables: don't compare unequal types
2019-12-09 19:51:40 +00:00
Philip Dubé
bdd30bb181
Don't allow distributing by a generated column
2019-09-04 14:50:17 +00:00
Philip Dubé
693d4695d7
Create a test 'pg12' for pg12 features & error on unsupported new features
...
Unsupported new features: COPY FROM WHERE, GENERATED ALWAYS AS, non-heap table access methods
2019-08-22 19:30:56 +00:00