Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit d30d8f3

Browse files
committed
Update expected result for new inet error message wording.
1 parent f2a19cf commit d30d8f3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/test/regress/expected/inet.out

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -425,13 +425,13 @@ SELECT '127::2'::inet - ('127::2'::inet - 500);
425425

426426
-- these should give overflow errors:
427427
SELECT '127.0.0.1'::inet + 10000000000;
428-
ERROR: result out of range
428+
ERROR: result is out of range
429429
SELECT '127.0.0.1'::inet - 10000000000;
430-
ERROR: result out of range
430+
ERROR: result is out of range
431431
SELECT '126::1'::inet - '127::2'::inet;
432-
ERROR: result out of range
432+
ERROR: result is out of range
433433
SELECT '127::1'::inet - '126::2'::inet;
434-
ERROR: result out of range
434+
ERROR: result is out of range
435435
-- but not these
436436
SELECT '127::1'::inet + 10000000000;
437437
?column?

0 commit comments

Comments
 (0)