blob: 376e7cadbf7ff4ffb231fe9954cb6da065f2d640 [file] [log] [blame]
create table t_update_hash_col_utilitymode(c int, d int) distributed by (c);
-- This works.
1U: update t_update_hash_col_utilitymode set d = d + 1;
-- But this throws an error.
1U: update t_update_hash_col_utilitymode set c = c + 1;
drop table t_update_hash_col_utilitymode;