Fix sophisticated default

This commit is contained in:
alesapin 2020-03-10 16:34:54 +03:00
parent b212a78195
commit 27f07b513e
1 changed files with 2 additions and 8 deletions

View File

@ -1,12 +1,6 @@
ATTACH TABLE sophisticated_default
(
a UInt8 DEFAULT
(
SELECT number FROM system.numbers LIMIT 3,1
),
b UInt8 ALIAS
(
SELECT dummy+9 FROM system.one
),
a UInt8 DEFAULT 3,
b UInt8 ALIAS a - 3 + 9,
c UInt8
) ENGINE = Memory