diff options
| author | Tom Lane | 2004-08-31 17:10:36 +0000 |
|---|---|---|
| committer | Tom Lane | 2004-08-31 17:10:36 +0000 |
| commit | 617d6ea7df6edbdf959a6c6dbf6f4fdd3d272a9c (patch) | |
| tree | 9959d86e0dc81a03f102f673e49b0ee677c31c70 /src/backend/bootstrap | |
| parent | a421b4e850087e6ba7e63dc9193376718e96d43a (diff) | |
Fix unintended assignment of sequences to the containing schema's
default tablespace --- they should always go in the database's default
tablespace. Adjust heap_create() API so that it is passed the relkind
to make this easier; should simplify any further tweaking of the same
sort.
Diffstat (limited to 'src/backend/bootstrap')
| -rw-r--r-- | src/backend/bootstrap/bootparse.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/bootstrap/bootparse.y b/src/backend/bootstrap/bootparse.y index c93e176f83b..9bab19784a4 100644 --- a/src/backend/bootstrap/bootparse.y +++ b/src/backend/bootstrap/bootparse.y @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/bootstrap/bootparse.y,v 1.72 2004/08/29 04:12:24 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/bootstrap/bootparse.y,v 1.73 2004/08/31 17:10:36 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -184,8 +184,8 @@ Boot_CreateStmt: PG_CATALOG_NAMESPACE, $3 ? GLOBALTABLESPACE_OID : 0, tupdesc, + RELKIND_RELATION, $3, - true, true); elog(DEBUG4, "bootstrap relation created"); } |
