mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-08 08:35:20 +00:00
17 lines
377 B
MySQL
17 lines
377 B
MySQL
|
DROP TABLE IF EXISTS table2;
|
||
|
CREATE TABLE table2
|
||
|
(
|
||
|
EventDate Date,
|
||
|
Id Int32,
|
||
|
Value Int32
|
||
|
)
|
||
|
Engine = MergeTree()
|
||
|
PARTITION BY toYYYYMM(EventDate)
|
||
|
ORDER BY Id;
|
||
|
|
||
|
ALTER TABLE table2 MODIFY COLUMN `Value` DEFAULT 'some_string'; --{serverError 6}
|
||
|
|
||
|
ALTER TABLE table2 ADD COLUMN `Value2` DEFAULT 'some_string'; --{serverError 36}
|
||
|
|
||
|
DROP TABLE IF EXISTS table2;
|