Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
10.9.1.0
-
None
-
Normal
-
Release Note Needed, Repro attached
-
Deviation from standard
Description
Derby postpones checking values in DEFAULT clauses to DML time, cf this example:
create table t(c varchar(2) default 'foo')
insert into t values default
According to the standard [1], an error should result at create table time. Derby throws an error only at insert time above. Similarly for other types. Cf also discussion in DERBY-118.
Cf also comments in ColumnDefinitionNode#defaultTypeIsValid:
"We'll check this at insertion time; see Beetle 5585 regarding the
need to move that check to here instead of waiting until insert
time."
We should implement correct type checking of the DEFAULT values given at DDL time.
Attachments
Issue Links
- is related to
-
DERBY-118 Allow any build-in function as default values in table create for columns.
- Closed