mirror of https://github.com/citusdata/citus.git
upgrade_type_after: ORDER BY
parent
b4ba832ae9
commit
3bb4f14efd
|
@ -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