diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-02-02 18:39:23 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-02-02 18:39:23 +0000 |
commit | 1b907ab8f5cb158468c11d0bac9c72529c8193a3 (patch) | |
tree | d1514cc043d869dee38c9a6c07d10984109bcb63 | |
parent | 8e958b8a38611e3c62d069af3e3dbc76c1a8a41f (diff) | |
download | postgresql-1b907ab8f5cb158468c11d0bac9c72529c8193a3.tar.gz postgresql-1b907ab8f5cb158468c11d0bac9c72529c8193a3.zip |
Fix for psql help create table.
-rw-r--r-- | src/bin/psql/psqlHelp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/psql/psqlHelp.h b/src/bin/psql/psqlHelp.h index 833e6defc91..ad887148cea 100644 --- a/src/bin/psql/psqlHelp.h +++ b/src/bin/psql/psqlHelp.h @@ -5,7 +5,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: psqlHelp.h,v 1.55 1999/02/02 03:45:15 momjian Exp $ + * $Id: psqlHelp.h,v 1.56 1999/02/02 18:39:23 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -125,9 +125,9 @@ static struct _helpStruct QL_HELP[] = { "create a new table", "\ \tCREATE [TEMP] TABLE class_name\n\ -\t(attr1 type1 [DEFAULT expression] [NOT NULL], ...attrN)\n\ +\t(attr1 type1 [DEFAULT expression] [NOT NULL], ...attrN\n\ \t[INHERITS (class_name1, ...class_nameN)\n\ -\t[[CONSTRAINT name] CHECK condition1, ...conditionN] ]\n\ +\t[[CONSTRAINT name] CHECK condition1, ...conditionN] ])\n\ ;"}, {"create trigger", "create a new trigger", |