mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +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:
@ -1154,7 +1154,7 @@ FROM dblink_fetch('myconn','error_cursor', 1) AS t(i int);
|
||||
|
||||
SELECT *
|
||||
FROM dblink_fetch('myconn','error_cursor', 1) AS t(i int);
|
||||
ERROR: invalid input syntax for integer: "not an int"
|
||||
ERROR: invalid input syntax for type integer: "not an int"
|
||||
-- Make sure that the local settings have retained their values in spite
|
||||
-- of shenanigans on the connection.
|
||||
SHOW datestyle;
|
||||
|
Reference in New Issue
Block a user