- Posts: 2
- Thank you received: 0
Issue with default value
2 months 5 days ago #22865
by Linda
Issue with default value was created by Linda
Hi
If you have a MariaDB field with a default value when insert from the database or browser is doesn't read and precompile the default value into the field
This was not so in previous versions
example :
DROP TABLE LX;
CREATE TABLE LX
(fieldone VARCHAR(255) NOT NULL, f
ieldtwo char(20) default 'ZAZ' not null);
INSERT INTO LX (fieldone) VALUES ('sample');
In this case, I have a result of 'sample' value in fieldone and 'ZAZ' into fieldtwo
But the database browser doesn't put ZAZ in the precompiled field
Best regards,
Linda
If you have a MariaDB field with a default value when insert from the database or browser is doesn't read and precompile the default value into the field
This was not so in previous versions
example :
DROP TABLE LX;
CREATE TABLE LX
(fieldone VARCHAR(255) NOT NULL, f
ieldtwo char(20) default 'ZAZ' not null);
INSERT INTO LX (fieldone) VALUES ('sample');
In this case, I have a result of 'sample' value in fieldone and 'ZAZ' into fieldtwo
But the database browser doesn't put ZAZ in the precompiled field
Best regards,
Linda
Please Log in or Create an account to join the conversation.
2 months 5 days ago - 2 months 5 days ago #22866
by admin
Mike
ETL Architect
Replied by admin on topic Issue with default value
The issue you reported was addressed in the latest release.
Thank you for the feedback
We have also updated the rest of our products
Thank you for the feedback
We have also updated the rest of our products
Mike
ETL Architect
Last edit: 2 months 5 days ago by admin.
Please Log in or Create an account to join the conversation.