diff options
| author | Jan Wieck <JanWieck@Yahoo.com> | 2000-07-05 12:45:31 +0000 |
|---|---|---|
| committer | Jan Wieck <JanWieck@Yahoo.com> | 2000-07-05 12:45:31 +0000 |
| commit | 030962da262d9238a83b3d70a1720acdcf3efaea (patch) | |
| tree | a703f9d3095aaa321a133685cf93fb2889f44e71 /src/include/commands/command.h | |
| parent | f2dfd5616c64ca7180964190fd600efe4bc69cfa (diff) | |
| download | postgresql-030962da262d9238a83b3d70a1720acdcf3efaea.tar.gz | |
Bugfix in ALTER TABLE CREATE TOAST TABLE
Automatically create toast table at CREATE TABLE if new table
has toastable attributes.
Jan
Diffstat (limited to 'src/include/commands/command.h')
| -rw-r--r-- | src/include/commands/command.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/commands/command.h b/src/include/commands/command.h index e870126355..b2b3d6383f 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.20 2000/07/03 23:10:10 wieck Exp $ + * $Id: command.h,v 1.21 2000/07/05 12:45:31 wieck Exp $ * *------------------------------------------------------------------------- */ @@ -58,7 +58,8 @@ extern void AlterTableDropConstraint(const char *relationName, bool inh, const char *constrName, int behavior); -extern void AlterTableCreateToastTable(const char *relationName); +extern void AlterTableCreateToastTable(const char *relationName, + bool silent); /* * LOCK |
