mirror of https://github.com/citusdata/citus.git
Merge pull request #3689 from citusdata/fix-upgrade-type-after-ordering
upgrade_type_after: ORDER BYpull/3694/head
commit
4fa06388e3
|
@ -3,7 +3,7 @@ BEGIN;
|
|||
SET LOCAL citus.multi_shard_modify_mode TO 'sequential';
|
||||
-- test distributed type
|
||||
INSERT INTO tt VALUES (1, (2,3)::type1);
|
||||
SELECT * FROM tt;
|
||||
SELECT * FROM tt ORDER BY 1,2;
|
||||
a | b
|
||||
---------------------------------------------------------------------
|
||||
1 | (2,3)
|
||||
|
|
|
@ -4,7 +4,7 @@ SET LOCAL citus.multi_shard_modify_mode TO 'sequential';
|
|||
|
||||
-- test distributed type
|
||||
INSERT INTO tt VALUES (1, (2,3)::type1);
|
||||
SELECT * FROM tt;
|
||||
SELECT * FROM tt ORDER BY 1, 2;
|
||||
ALTER TYPE type1 RENAME TO type1_newname;
|
||||
INSERT INTO tt VALUES (3, (4,5)::type1_newname);
|
||||
|
||||
|
|
Loading…
Reference in New Issue