mirror of
https://github.com/postgres/postgres.git
synced 2025-06-11 20:28:21 +03:00
Deduplicate "invalid input syntax" messages for various types.
Previously a lot of the error messages referenced the type in the error message itself. That requires that the message is translated separately for each type. Note that currently a few smallint cases continue to reference the integer, rather than smallint, type. A later patch will create a separate routine for 16bit input. Author: Andres Freund Discussion: https://postgr.es/m/20180707200158.wpqkd7rjr4jxq5g7@alap3.anarazel.de
This commit is contained in:
@ -4087,16 +4087,16 @@ DROP FUNCTION f_test(int);
|
||||
-- ===================================================================
|
||||
ALTER FOREIGN TABLE ft1 ALTER COLUMN c8 TYPE int;
|
||||
SELECT * FROM ft1 WHERE c1 = 1; -- ERROR
|
||||
ERROR: invalid input syntax for integer: "foo"
|
||||
ERROR: invalid input syntax for type integer: "foo"
|
||||
CONTEXT: column "c8" of foreign table "ft1"
|
||||
SELECT ft1.c1, ft2.c2, ft1.c8 FROM ft1, ft2 WHERE ft1.c1 = ft2.c1 AND ft1.c1 = 1; -- ERROR
|
||||
ERROR: invalid input syntax for integer: "foo"
|
||||
ERROR: invalid input syntax for type integer: "foo"
|
||||
CONTEXT: column "c8" of foreign table "ft1"
|
||||
SELECT ft1.c1, ft2.c2, ft1 FROM ft1, ft2 WHERE ft1.c1 = ft2.c1 AND ft1.c1 = 1; -- ERROR
|
||||
ERROR: invalid input syntax for integer: "foo"
|
||||
ERROR: invalid input syntax for type integer: "foo"
|
||||
CONTEXT: whole-row reference to foreign table "ft1"
|
||||
SELECT sum(c2), array_agg(c8) FROM ft1 GROUP BY c8; -- ERROR
|
||||
ERROR: invalid input syntax for integer: "foo"
|
||||
ERROR: invalid input syntax for type integer: "foo"
|
||||
CONTEXT: processing expression at position 2 in select list
|
||||
ALTER FOREIGN TABLE ft1 ALTER COLUMN c8 TYPE user_enum;
|
||||
-- ===================================================================
|
||||
|
Reference in New Issue
Block a user