aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-02-02 18:39:23 +0000
committerBruce Momjian <bruce@momjian.us>1999-02-02 18:39:23 +0000
commit1b907ab8f5cb158468c11d0bac9c72529c8193a3 (patch)
treed1514cc043d869dee38c9a6c07d10984109bcb63
parent8e958b8a38611e3c62d069af3e3dbc76c1a8a41f (diff)
downloadpostgresql-1b907ab8f5cb158468c11d0bac9c72529c8193a3.tar.gz
postgresql-1b907ab8f5cb158468c11d0bac9c72529c8193a3.zip
Fix for psql help create table.
-rw-r--r--src/bin/psql/psqlHelp.h6
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",