Open arximboldi opened 11 months ago
Hii @mathiasrw
Noticing default values set during INSERT operations in tables (banks, pigs) where specified defaults exist, they are correctly applied. However, columns without explicitly provided values during retrieval display as 'undefined', which aligns with expectations as no default values were specified for those columns.
Additionally, updated the FOREIGN KEY reference from bank(name) to banks(name) for accuracy.
let me know, if i missed something.
@arximboldi Can you confirm what @jigarBorde said?
I have the following tables:
I have noticed that when I do an
INSERT
, all unspecified values are left asundefined
instead of using any of theDEFAULT
specifications.This has been tested for both
FILESTORAGE
andLOCALSTORAGE
.