diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-07-04 06:11:54 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-07-04 06:11:54 +0000 |
| commit | cdeca5f590cc3c336c9c217831d68a2ca7f15265 (patch) | |
| tree | f233f7ae62023950d1c169530b83f705c63ceed0 /src/include/access/tuptoaster.h | |
| parent | 9cf327790d978fc4ec6dba1c7f456e0a7596e4e2 (diff) | |
| download | postgresql-cdeca5f590cc3c336c9c217831d68a2ca7f15265.tar.gz | |
Make toast-table creation and deletion work somewhat reliably.
Don't go through pg_exec_query_dest(), but directly to the execution
routines. Also, extend parameter lists so that there's no need to
change the global setting of allowSystemTableMods, a hack that was
certain to cause trouble in the event of any error.
Diffstat (limited to 'src/include/access/tuptoaster.h')
| -rw-r--r-- | src/include/access/tuptoaster.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/include/access/tuptoaster.h b/src/include/access/tuptoaster.h index c30f61218e..da38f65385 100644 --- a/src/include/access/tuptoaster.h +++ b/src/include/access/tuptoaster.h @@ -6,7 +6,7 @@ * * Copyright (c) 2000, PostgreSQL Development Team * - * $Id: tuptoaster.h,v 1.4 2000/07/04 00:04:03 tgl Exp $ + * $Id: tuptoaster.h,v 1.5 2000/07/04 06:11:50 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -34,10 +34,6 @@ extern void heap_tuple_toast_attrs(Relation rel, extern varattrib *heap_tuple_untoast_attr(varattrib * attr); -extern void heap_create_toast_table(Oid new_reloid, - TupleDesc new_tupdesc, bool istemp); - - #endif /* TUPLE_TOASTER_ACTIVE */ |
