diff options
-rw-r--r-- | src/test/regress/expected/update.out | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/regress/expected/update.out b/src/test/regress/expected/update.out index a9796445b3..f761e47e80 100644 --- a/src/test/regress/expected/update.out +++ b/src/test/regress/expected/update.out @@ -161,7 +161,7 @@ UPDATE update_test SET c = repeat('x', 10000) WHERE c = 'car'; SELECT a, b, char_length(c) FROM update_test ORDER BY a; a | b | char_length ----+-----+------------- - 21 | 101 | + 21 | 100 | 41 | 12 | 10000 42 | 12 | 10000 | | @@ -211,8 +211,8 @@ insert into part_a_1_a_10 values ('a', 1); insert into part_b_10_b_20 values ('b', 10); -- fail update part_a_1_a_10 set a = 'b' where a = 'a'; -ERROR: new row for relation "part_a_1_a_10" violates partition constraint -DETAIL: Failing row contains (b, 1). +ERROR: could not plan this distributed update +DETAIL: correlated UPDATE or updating distribution column currently not supported in Postgres-XL. update range_parted set b = b - 1 where b = 10; ERROR: new row for relation "part_b_10_b_20" violates partition constraint DETAIL: Failing row contains (b, 9). |