mirror of
https://github.com/postgres/postgres.git
synced 2025-08-27 07:42:10 +03:00
Add OID output argument to DefineTSConfiguration
... which is set to the OID of a copied text search config, whenever the
COPY clause is used.
This is in the spirit of commit a2e35b53c3
.
This commit is contained in:
@@ -1129,7 +1129,8 @@ ProcessUtilitySlow(Node *parsetree,
|
||||
case OBJECT_TSCONFIGURATION:
|
||||
Assert(stmt->args == NIL);
|
||||
DefineTSConfiguration(stmt->defnames,
|
||||
stmt->definition);
|
||||
stmt->definition,
|
||||
NULL);
|
||||
break;
|
||||
case OBJECT_COLLATION:
|
||||
Assert(stmt->args == NIL);
|
||||
|
Reference in New Issue
Block a user