ClickHouse/dbms/tests/queries/0_stateless/00806_alter_update.sql

12 lines
520 B
MySQL
Raw Normal View History

2019-06-03 17:36:27 +00:00
DROP TABLE IF EXISTS alter_update_00806;
2018-12-19 14:36:55 +00:00
2019-06-03 17:36:27 +00:00
CREATE TABLE alter_update_00806 (d Date, e Enum8('foo'=1, 'bar'=2)) Engine = MergeTree(d, (d), 8192);
INSERT INTO alter_update_00806 (d, e) VALUES ('2018-01-01', 'foo');
INSERT INTO alter_update_00806 (d, e) VALUES ('2018-01-02', 'bar');
2018-12-19 14:36:55 +00:00
2019-06-03 17:36:27 +00:00
ALTER TABLE alter_update_00806 UPDATE e = CAST('foo', 'Enum8(\'foo\' = 1, \'bar\' = 2)') WHERE d='2018-01-02';
2018-12-19 14:36:55 +00:00
SELECT sleep(1); -- TODO: there should be setting for sync ALTER UPDATE someday.
2019-06-03 17:36:27 +00:00
SELECT e FROM alter_update_00806 ORDER BY d;