diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-01-03 06:09:02 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-01-03 06:09:02 +0000 |
commit | a4ee277e175a0965fcd2d61f06c85ac9ee0617ac (patch) | |
tree | afd78f3845355779c5a150b2a3e90490ec45ee9c /doc/src | |
parent | f9b792c5c34260760fd2b90d6a5899d16beaef62 (diff) | |
download | postgresql-a4ee277e175a0965fcd2d61f06c85ac9ee0617ac.tar.gz postgresql-a4ee277e175a0965fcd2d61f06c85ac9ee0617ac.zip |
droplang had same problem as createlang; default are backwards and did
not work. Fixed to match createlang.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/droplang.sgml | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/doc/src/sgml/ref/droplang.sgml b/doc/src/sgml/ref/droplang.sgml index 27cea628fe3..02350ff2c5e 100644 --- a/doc/src/sgml/ref/droplang.sgml +++ b/doc/src/sgml/ref/droplang.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/droplang.sgml,v 1.15 2001/12/08 03:24:36 thomas Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/droplang.sgml,v 1.16 2002/01/03 06:09:01 momjian Exp $ PostgreSQL documentation --> @@ -23,8 +23,8 @@ PostgreSQL documentation <cmdsynopsis> <command>droplang</command> <arg rep="repeat"><replaceable>connection-options</replaceable></arg> - <arg><replaceable>langname</replaceable></arg> - <arg choice="plain"><replaceable>dbname</replaceable></arg> + <arg choice="plain"><replaceable>langname</replaceable></arg> + <arg><replaceable>dbname</replaceable></arg> <sbr> <command>droplang</command> <arg rep="repeat"><replaceable>connection-options</replaceable></arg> @@ -45,9 +45,6 @@ PostgreSQL documentation <listitem> <para> Specifies the name of the backend programming language to be removed. - <application>droplang</application> will prompt for - <replaceable class="parameter">langname</replaceable> - if it is not specified on the command line. </para> </listitem> </varlistentry> @@ -57,6 +54,8 @@ PostgreSQL documentation <listitem> <para> Specifies from which database the language should be removed. + The default is to create a database with the same name as the + current system user. </para> </listitem> </varlistentry> |