diff options
| author | Tom Lane | 2002-03-22 02:56:37 +0000 |
|---|---|---|
| committer | Tom Lane | 2002-03-22 02:56:37 +0000 |
| commit | 108a0ec87d41393c362c5b8d8aa17d9a734e4f1a (patch) | |
| tree | f437cf9d8bb1db8fdacf1c1022eac0f11e146069 /src/backend/tcop | |
| parent | 56c9b73c1d426c79a604df6d6f36293dd9f18754 (diff) | |
A little further progress on schemas: push down RangeVars into
addRangeTableEntry calls. Remove relname field from RTEs, since
it will no longer be a useful unique identifier of relations;
we want to encourage people to rely on the relation OID instead.
Further work on dumping qual expressions in EXPLAIN, too.
Diffstat (limited to 'src/backend/tcop')
| -rw-r--r-- | src/backend/tcop/postgres.c | 8 | ||||
| -rw-r--r-- | src/backend/tcop/utility.c | 6 |
2 files changed, 3 insertions, 11 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 8443fe6591b..68358f4966d 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.258 2002/03/21 16:01:25 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.259 2002/03/22 02:56:35 tgl Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -1722,7 +1722,7 @@ PostgresMain(int argc, char *argv[], const char *username) if (!IsUnderPostmaster) { puts("\nPOSTGRES backend interactive interface "); - puts("$Revision: 1.258 $ $Date: 2002/03/21 16:01:25 $\n"); + puts("$Revision: 1.259 $ $Date: 2002/03/22 02:56:35 $\n"); } /* @@ -2291,10 +2291,6 @@ CreateCommandTag(Node *parsetree) tag = "DROP"; break; - case T_VersionStmt: - tag = "CREATE VERSION"; - break; - case T_CreatedbStmt: tag = "CREATE DATABASE"; break; diff --git a/src/backend/tcop/utility.c b/src/backend/tcop/utility.c index 1f0046887f4..af6b943e349 100644 --- a/src/backend/tcop/utility.c +++ b/src/backend/tcop/utility.c @@ -10,7 +10,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.137 2002/03/21 23:27:23 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.138 2002/03/22 02:56:35 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -578,10 +578,6 @@ ProcessUtility(Node *parsetree, } break; - case T_VersionStmt: - elog(ERROR, "CREATE VERSION is not currently implemented"); - break; - case T_CreatedbStmt: { CreatedbStmt *stmt = (CreatedbStmt *) parsetree; |
