diff options
author | Jan Wieck <JanWieck@Yahoo.com> | 2000-07-03 23:10:14 +0000 |
---|---|---|
committer | Jan Wieck <JanWieck@Yahoo.com> | 2000-07-03 23:10:14 +0000 |
commit | 57d8080a40f51e1ff9eedea602e96e2612161d77 (patch) | |
tree | 6dbed1f7333436cb08af6e7c0d9c55ac5e064750 /src/include/commands/command.h | |
parent | ef5bea51e17d36ab06e7e67847a8b1e489d6d189 (diff) | |
download | postgresql-57d8080a40f51e1ff9eedea602e96e2612161d77.tar.gz postgresql-57d8080a40f51e1ff9eedea602e96e2612161d77.zip |
TOAST
WARNING: This is actually broken - we have self-deadlocks
due to concurrent changes in buffer management.
Vadim and me are working on it.
Jan
Diffstat (limited to 'src/include/commands/command.h')
-rw-r--r-- | src/include/commands/command.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/commands/command.h b/src/include/commands/command.h index 8cb31889fa0..e8701263557 100644 --- a/src/include/commands/command.h +++ b/src/include/commands/command.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: command.h,v 1.19 2000/06/28 03:32:57 tgl Exp $ + * $Id: command.h,v 1.20 2000/07/03 23:10:10 wieck Exp $ * *------------------------------------------------------------------------- */ @@ -58,6 +58,8 @@ extern void AlterTableDropConstraint(const char *relationName, bool inh, const char *constrName, int behavior); +extern void AlterTableCreateToastTable(const char *relationName); + /* * LOCK */ |