diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2007-08-22 05:13:50 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2007-08-22 05:13:50 +0000 |
commit | 8a5592daf1bcc65f002fce23de1ee0e533e6c6a6 (patch) | |
tree | a75b934a91dbcc83fdba61e0191c35c40c713d4d /src/include/nodes/parsenodes.h | |
parent | 40c1d7c10e21aa95bfde957f52b287148394fe8a (diff) | |
download | postgresql-8a5592daf1bcc65f002fce23de1ee0e533e6c6a6.tar.gz postgresql-8a5592daf1bcc65f002fce23de1ee0e533e6c6a6.zip |
Remove option to change parser of an existing text search configuration.
This prevents needing to do complex and poorly-defined updates of the
mapping table if the new parser has different token types than the old.
Per discussion.
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r-- | src/include/nodes/parsenodes.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 7ba810dbb1a..79449c55847 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.351 2007/08/21 01:11:28 tgl Exp $ + * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.352 2007/08/22 05:13:50 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -2054,10 +2054,8 @@ typedef struct AlterTSConfigurationStmt { NodeTag type; List *cfgname; /* qualified name (list of Value strings) */ - List *options; /* List of DefElem nodes */ /* - * These fields are used for ADD/ALTER/DROP MAPPING variants. * dicts will be non-NIL if ADD/ALTER MAPPING was specified. * If dicts is NIL, but tokentype isn't, DROP MAPPING was specified. */ |