Closed arvanus closed 1 year ago
@andy-123 could you please take a look at Fb4 data types? I've found a bug and would like to ask you to give a look please
Steps:
CREATE TABLE TABLE_NAME (
COLUMN_NAME DECIMAL(18,6) NOT NULL,
DEC_F2 NUMERIC(38,6)
);
ALTER TABLE TABLE_NAME ADD CONSTRAINT CONSTRAINT_NAME_PK PRIMARY KEY (COLUMN_NAME);
INSERT INTO TABLE_NAME (COLUMN_NAME, DEC_F2) VALUES (1, '123123124123412577766.441231');
select * from table_name;
--Edit manually dec_f2 to value 123123124123412577766.44123
--See that the value changed to 123123124123412577767.444123
Thanks
See fix in PR #306
(Sorry for long time beeing inactive.)
looks like it's working now, thanks for your effort! I'm not using any of the new data types now, so lets wait for others reviewing it too I'll close the issue for now
New datatypes: