Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.35.0
Description
II change table.iq a bit and found a problem with processing default column expression:
CREATE TABLE tdef (i int not null, j int DEFAULT 100); (0 rows modified) !update INSERT INTO tdef VALUES (1, DEFAULT); (1 row modified) !update INSERT INTO tdef(i) VALUES (2); (1 row modified) !update SELECT * FROM tdef ORDER BY i; +---+-----+ | I | J | +---+-----+ | 1 | 100 | | 2 | 100 | +---+-----+ (2 rows) !ok but obtain from calcite: +---+-----+ | I | J | +---+-----+ | 1 | | | 2 | 100 | +---+-----+
Attachments
Issue Links
- links to