summaryrefslogtreecommitdiff
path: root/src/backend/parser
diff options
context:
space:
mode:
authorTom Lane2006-07-31 01:16:38 +0000
committerTom Lane2006-07-31 01:16:38 +0000
commit6e38e34d64b5769272e0ab873416aa6c95509b50 (patch)
tree2400d919e0296ff0fd4d014ccb7846bc2c8c7f69 /src/backend/parser
parent638860ce3581f80f836c7374936a250ec46f35a2 (diff)
Change the bootstrap sequence so that toast tables for system catalogs are
created in the bootstrap phase proper, rather than added after-the-fact by initdb. This is cleaner than before because it allows us to retire the undocumented ALTER TABLE ... CREATE TOAST TABLE command, but the real reason I'm doing it is so that toast tables of shared catalogs will now have predetermined OIDs. This will allow a reasonably clean solution to the problem of locking tables before we load their relcache entries, to appear in a forthcoming patch.
Diffstat (limited to 'src/backend/parser')
-rw-r--r--src/backend/parser/gram.y12
-rw-r--r--src/backend/parser/keywords.c3
2 files changed, 3 insertions, 12 deletions
diff --git a/src/backend/parser/gram.y b/src/backend/parser/gram.y
index afd88e8125b..434f05bc4d8 100644
--- a/src/backend/parser/gram.y
+++ b/src/backend/parser/gram.y
@@ -11,7 +11,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/parser/gram.y,v 2.552 2006/07/27 19:52:05 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/parser/gram.y,v 2.553 2006/07/31 01:16:37 tgl Exp $
*
* HISTORY
* AUTHOR DATE MAJOR EVENT
@@ -422,7 +422,7 @@ static void doNegateFloat(Value *v);
SYSID SYSTEM_P
TABLE TABLESPACE TEMP TEMPLATE TEMPORARY THEN TIME TIMESTAMP
- TO TOAST TRAILING TRANSACTION TREAT TRIGGER TRIM TRUE_P
+ TO TRAILING TRANSACTION TREAT TRIGGER TRIM TRUE_P
TRUNCATE TRUSTED TYPE_P
UNCOMMITTED UNENCRYPTED UNION UNIQUE UNKNOWN UNLISTEN UNTIL
@@ -1446,13 +1446,6 @@ alter_table_cmd:
n->subtype = AT_DropOids;
$$ = (Node *)n;
}
- /* ALTER TABLE <name> CREATE TOAST TABLE -- ONLY */
- | CREATE TOAST TABLE
- {
- AlterTableCmd *n = makeNode(AlterTableCmd);
- n->subtype = AT_ToastTable;
- $$ = (Node *)n;
- }
/* ALTER TABLE <name> CLUSTER ON <indexname> */
| CLUSTER ON name
{
@@ -8649,7 +8642,6 @@ unreserved_keyword:
| TEMP
| TEMPLATE
| TEMPORARY
- | TOAST
| TRANSACTION
| TRIGGER
| TRUNCATE
diff --git a/src/backend/parser/keywords.c b/src/backend/parser/keywords.c
index 78dd531a56e..37686873f62 100644
--- a/src/backend/parser/keywords.c
+++ b/src/backend/parser/keywords.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/parser/keywords.c,v 1.173 2006/07/15 03:35:21 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/parser/keywords.c,v 1.174 2006/07/31 01:16:37 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -332,7 +332,6 @@ static const ScanKeyword ScanKeywords[] = {
{"time", TIME},
{"timestamp", TIMESTAMP},
{"to", TO},
- {"toast", TOAST},
{"trailing", TRAILING},
{"transaction", TRANSACTION},
{"treat", TREAT},