summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Browne2015-11-06 23:12:32 +0000
committerChristopher Browne2015-11-06 23:12:32 +0000
commit55ca8214c0c5276364d8f261383ce4ee9038666a (patch)
treef004ec02502adb5edb22bfa051d210c6387fc4f4
parent5cea404d6df7f5087238fdddfde7affd9f860403 (diff)
Bug 362 - error in docsREL_2_0_STABLE
-rw-r--r--doc/adminguide/firstdb.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/adminguide/firstdb.sgml b/doc/adminguide/firstdb.sgml
index 8a8ade07..3df38842 100644
--- a/doc/adminguide/firstdb.sgml
+++ b/doc/adminguide/firstdb.sgml
@@ -107,7 +107,7 @@ primary key. </para>
<para> The following SQL requests will establish a proper primary key on this table: </para>
<programlisting>
-psql -U $PGBENCHUSER -h $HOST1 -d $MASTERDBNAME -c "begin; alter table
+psql -U $PGBENCHUSER -h $MASTERHOST -d $MASTERDBNAME -c "begin; alter table
history add column id serial; update history set id =
nextval('history_id_seq'); alter table history add primary key(id);
commit"