Insert a new record with 4 digits - example starting from 1000 & encounter the issue:
Steps To Reproduce
Connect to a Postgres DS
Create a table with money datatype create table moneyType(id serial primary key, cash money not null)
Insert records until 3 digits: eg : 999.99 & observe data retrieval is as expected -INSERT INTO public."moneyType" ("cash") VALUES ('999.98996998');
Now Insert another record with cash value 1000 or more
Try retrieval & observe the error in Select
Expected: money datatype should support the full range [-92233720368547758.08 to +92233720368547758.07] & allow user to insert & retrieve any value within this range just fine
Is there an existing issue for this?
Description
Until 3 digits - the select query runs fine:
Insert a new record with 4 digits - example starting from 1000 & encounter the issue:
Steps To Reproduce
create table moneyType(id serial primary key, cash money not null)
INSERT INTO public."moneyType" ("cash") VALUES ('999.98996998');
Public Sample App
No response
Version
Prod/Release v1.7.2