mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-03-01 19:45:33 +08:00
In CREATE CONVERSION, test that the given function is a valid conversion
function for the specified source and destination encodings. We do that by calling the function with an empty string. If it can't perform the requested conversion, it will throw an error. Backport to 7.4 - 8.3. Per bug report #4680 by Denis Afonin.
This commit is contained in:
parent
29d033f926
commit
109177fe3a
@ -8,7 +8,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/commands/conversioncmds.c,v 1.32 2008/01/01 19:45:48 momjian Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/commands/conversioncmds.c,v 1.32.2.1 2009/02/27 16:35:31 heikki Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -47,6 +47,7 @@ CreateConversionCommand(CreateConversionStmt *stmt)
|
||||
const char *to_encoding_name = stmt->to_encoding_name;
|
||||
List *func_name = stmt->func_name;
|
||||
static Oid funcargs[] = {INT4OID, INT4OID, CSTRINGOID, INTERNALOID, INT4OID};
|
||||
char result[1];
|
||||
|
||||
/* Convert list of names to a name and namespace */
|
||||
namespaceId = QualifiedNameGetCreationNamespace(stmt->conversion_name,
|
||||
@ -86,6 +87,19 @@ CreateConversionCommand(CreateConversionStmt *stmt)
|
||||
aclcheck_error(aclresult, ACL_KIND_PROC,
|
||||
NameListToString(func_name));
|
||||
|
||||
/*
|
||||
* Check that the conversion function is suitable for the requested
|
||||
* source and target encodings. We do that by calling the function with
|
||||
* an empty string; the conversion function should throw an error if it
|
||||
* can't perform the requested conversion.
|
||||
*/
|
||||
OidFunctionCall5(funcoid,
|
||||
Int32GetDatum(from_encoding),
|
||||
Int32GetDatum(to_encoding),
|
||||
CStringGetDatum(""),
|
||||
CStringGetDatum(result),
|
||||
Int32GetDatum(0));
|
||||
|
||||
/*
|
||||
* All seem ok, go ahead (possible failure would be a duplicate conversion
|
||||
* name)
|
||||
|
Loading…
Reference in New Issue
Block a user