@@ -393,25 +393,25 @@ SELECT '100(+-)1'::seg AS seg;
393393SELECT ''::seg AS seg;
394394ERROR: seg_in: can't parse an empty string
395395SELECT 'ABC'::seg AS seg;
396- ERROR: parse error, expecting `FLOAT' or `RANGE' or `EXTENSION' at or near position 1, character ('A', \101), input: 'ABC'
396+ ERROR: parse error at or near position 1, character ('A', \101), input: 'ABC'
397397
398398SELECT '1ABC'::seg AS seg;
399- ERROR: expecting end of input at or near position 2, character ('A', \101), input: '1ABC'
399+ ERROR: parse error at or near position 2, character ('A', \101), input: '1ABC'
400400
401401SELECT '1.'::seg AS seg;
402- ERROR: expecting end of input at or near position 2, character ('.', \056), input: '1.'
402+ ERROR: parse error at or near position 2, character ('.', \056), input: '1.'
403403
404404SELECT '1.....'::seg AS seg;
405- ERROR: expecting end of input at or near position 6, character ('.', \056), input: '1.....'
405+ ERROR: parse error at or near position 6, character ('.', \056), input: '1.....'
406406
407407SELECT '.1'::seg AS seg;
408- ERROR: parse error, expecting `FLOAT' or `RANGE' or `EXTENSION' at or near position 2, character ('1', \061), input: '.1'
408+ ERROR: parse error at or near position 2, character ('1', \061), input: '.1'
409409
410410SELECT '1..2.'::seg AS seg;
411- ERROR: expecting end of input at or near position 5, character ('.', \056), input: '1..2.'
411+ ERROR: parse error at or near position 5, character ('.', \056), input: '1..2.'
412412
413413SELECT '1 e7'::seg AS seg;
414- ERROR: expecting end of input at or near position 3, character ('e', \145), input: '1 e7'
414+ ERROR: parse error at or near position 3, character ('e', \145), input: '1 e7'
415415
416416SELECT '1e700'::seg AS seg;
417417ERROR: numeric value 1e700 unrepresentable
0 commit comments