We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent514d0f4 commit06d45e4Copy full SHA for 06d45e4
src/test/regress/expected/numeric.out
@@ -688,12 +688,12 @@ INSERT INTO fract_only VALUES (1, '0.0');
688
INSERT INTO fract_only VALUES (2, '0.1');
689
INSERT INTO fract_only VALUES (3, '1.0');-- should fail
690
ERROR: numeric field overflow
691
-DETAIL:The absolute value is greater than or equal to 10^0 for field with precision 4, scale 4.
+DETAIL:A field with precision 4, scale 4 must have an absolute value less than 1.
692
INSERT INTO fract_only VALUES (4, '-0.9999');
693
INSERT INTO fract_only VALUES (5, '0.99994');
694
INSERT INTO fract_only VALUES (6, '0.99995'); -- should fail
695
696
697
INSERT INTO fract_only VALUES (7, '0.00001');
698
INSERT INTO fract_only VALUES (8, '0.00017');
699
SELECT * FROM fract_only;