Commit d30d8f3a authored by Bruce Momjian's avatar Bruce Momjian

Update expected result for new inet error message wording.

parent f2a19cf3
......@@ -425,13 +425,13 @@ SELECT '127::2'::inet - ('127::2'::inet - 500);
-- these should give overflow errors:
SELECT '127.0.0.1'::inet + 10000000000;
ERROR: result out of range
ERROR: result is out of range
SELECT '127.0.0.1'::inet - 10000000000;
ERROR: result out of range
ERROR: result is out of range
SELECT '126::1'::inet - '127::2'::inet;
ERROR: result out of range
ERROR: result is out of range
SELECT '127::1'::inet - '126::2'::inet;
ERROR: result out of range
ERROR: result is out of range
-- but not these
SELECT '127::1'::inet + 10000000000;
?column?
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment