Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
4140085a
Commit
4140085a
authored
Jul 22, 2000
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
spell cleanups
parent
4bdb3486
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
30 additions
and
30 deletions
+30
-30
doc/src/FAQ/FAQ.html
doc/src/FAQ/FAQ.html
+3
-3
doc/src/sgml/ref/alter_user.sgml
doc/src/sgml/ref/alter_user.sgml
+2
-2
doc/src/sgml/ref/cluster.sgml
doc/src/sgml/ref/cluster.sgml
+2
-2
doc/src/sgml/ref/create_constraint.sgml
doc/src/sgml/ref/create_constraint.sgml
+2
-2
doc/src/sgml/ref/create_function.sgml
doc/src/sgml/ref/create_function.sgml
+2
-2
doc/src/sgml/ref/create_table.sgml
doc/src/sgml/ref/create_table.sgml
+9
-9
doc/src/sgml/ref/drop_type.sgml
doc/src/sgml/ref/drop_type.sgml
+2
-2
doc/src/sgml/ref/fetch.sgml
doc/src/sgml/ref/fetch.sgml
+2
-2
doc/src/sgml/ref/lock.sgml
doc/src/sgml/ref/lock.sgml
+2
-2
doc/src/sgml/ref/pgctl-ref.sgml
doc/src/sgml/ref/pgctl-ref.sgml
+2
-2
doc/src/sgml/ref/select.sgml
doc/src/sgml/ref/select.sgml
+2
-2
No files found.
doc/src/FAQ/FAQ.html
View file @
4140085a
...
@@ -115,7 +115,7 @@ evaluating my query?<BR>
...
@@ -115,7 +115,7 @@ evaluating my query?<BR>
<A
HREF=
"#4.12"
>
4.12
</A>
) What is Genetic Query Optimization?
<BR>
<A
HREF=
"#4.12"
>
4.12
</A>
) What is Genetic Query Optimization?
<BR>
<A
HREF=
"#4.13"
>
4.13
</A>
) How do I do regular expression searches
<A
HREF=
"#4.13"
>
4.13
</A>
) How do I do regular expression searches
and case-insensitive reg
exp
searching?
<BR>
and case-insensitive reg
ular expression
searching?
<BR>
<A
HREF=
"#4.14"
>
4.14
</A>
) In a query, how do I detect if a field
<A
HREF=
"#4.14"
>
4.14
</A>
) In a query, how do I detect if a field
is NULL?
<BR>
is NULL?
<BR>
<A
HREF=
"#4.15"
>
4.15
</A>
) What is the difference between the
<A
HREF=
"#4.15"
>
4.15
</A>
) What is the difference between the
...
@@ -351,7 +351,7 @@ http://www.PostgreSQL.org/docs/postgres.</A>
...
@@ -351,7 +351,7 @@ http://www.PostgreSQL.org/docs/postgres.</A>
in the distribution.
in the distribution.
<P>
<P>
There is a PostgreSQL book avail
i
able at
<A
There is a PostgreSQL book available at
<A
HREF=
"http://www.PostgreSQL.org/docs/awbook.html"
>
HREF=
"http://www.PostgreSQL.org/docs/awbook.html"
>
http://www.PostgreSQL.org/docs/awbook.html
</A><P>
http://www.PostgreSQL.org/docs/awbook.html
</A><P>
...
@@ -982,7 +982,7 @@ For further information see the documentation.
...
@@ -982,7 +982,7 @@ For further information see the documentation.
<H4><A
NAME=
"4.13"
>
4.13
</A>
) How do I do regular expression searches and
<H4><A
NAME=
"4.13"
>
4.13
</A>
) How do I do regular expression searches and
case-insensitive reg
exp
searching?
</H4><P>
case-insensitive reg
ular expression
searching?
</H4><P>
The
<I>
~
</I>
operator does regular-expression matching, and
<I>
~*
</I>
The
<I>
~
</I>
operator does regular-expression matching, and
<I>
~*
</I>
does case-insensitive regular-expression matching. There is no
does case-insensitive regular-expression matching. There is no
...
...
doc/src/sgml/ref/alter_user.sgml
View file @
4140085a
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_user.sgml,v 1.1
2 2000/07/22 02:39:10
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_user.sgml,v 1.1
3 2000/07/22 04:30:26
momjian Exp $
Postgres documentation
Postgres documentation
-->
-->
...
@@ -167,7 +167,7 @@ ALTER USER manuel VALID UNTIL 'Jan 31 2030';
...
@@ -167,7 +167,7 @@ ALTER USER manuel VALID UNTIL 'Jan 31 2030';
</programlisting>
</programlisting>
Change a user's valid until date, specifying that his
Change a user's valid until date, specifying that his
authori
s
ation should expire at midday on 4th May 1998 using
authori
z
ation should expire at midday on 4th May 1998 using
the time zone which is one hour ahead of UTC:
the time zone which is one hour ahead of UTC:
<programlisting>
<programlisting>
ALTER USER chris VALID UNTIL 'May 4 12:00:00 1998 +1';
ALTER USER chris VALID UNTIL 'May 4 12:00:00 1998 +1';
...
...
doc/src/sgml/ref/cluster.sgml
View file @
4140085a
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/cluster.sgml,v 1.
8 2000/07/22 02:39:10
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/cluster.sgml,v 1.
9 2000/07/22 04:30:26
momjian Exp $
Postgres documentation
Postgres documentation
-->
-->
...
@@ -129,7 +129,7 @@ ERROR: Relation <replaceable class="PARAMETER">table</replaceable> does not exis
...
@@ -129,7 +129,7 @@ ERROR: Relation <replaceable class="PARAMETER">table</replaceable> does not exis
In other words, as the class is updated, the changes are
In other words, as the class is updated, the changes are
not clustered. No attempt is made to keep new instances or
not clustered. No attempt is made to keep new instances or
updated tuples clustered. If one wishes, one can
updated tuples clustered. If one wishes, one can
recluster manually by issuing the command again.
re
-
cluster manually by issuing the command again.
</para>
</para>
<refsect2 id="R2-SQL-CLUSTER-3">
<refsect2 id="R2-SQL-CLUSTER-3">
...
...
doc/src/sgml/ref/create_constraint.sgml
View file @
4140085a
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_constraint.sgml,v 1.
1 2000/04/14 15:17:28 thomas
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_constraint.sgml,v 1.
2 2000/07/22 04:30:27 momjian
Exp $
Postgres documentation
Postgres documentation
-->
-->
...
@@ -76,7 +76,7 @@ CREATE CONSTRAINT TRIGGER <replaceable class="parameter">name</replaceable>
...
@@ -76,7 +76,7 @@ CREATE CONSTRAINT TRIGGER <replaceable class="parameter">name</replaceable>
<term><replaceable class="PARAMETER">attributes</replaceable></term>
<term><replaceable class="PARAMETER">attributes</replaceable></term>
<listitem>
<listitem>
<para>
<para>
Contraint attributes.
Con
s
traint attributes.
</para>
</para>
</listitem>
</listitem>
</varlistentry>
</varlistentry>
...
...
doc/src/sgml/ref/create_function.sgml
View file @
4140085a
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_function.sgml,v 1.1
4 2000/07/22 02:39:10
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_function.sgml,v 1.1
5 2000/07/22 04:30:27
momjian Exp $
Postgres documentation
Postgres documentation
-->
-->
...
@@ -301,7 +301,7 @@ CREATE FUNCTION point(complex) RETURNS point
...
@@ -301,7 +301,7 @@ CREATE FUNCTION point(complex) RETURNS point
LANGUAGE 'c';
LANGUAGE 'c';
</programlisting>
</programlisting>
<para>
<para>
The C dec
a
laration of the function is:
The C declaration of the function is:
</para>
</para>
<programlisting>
<programlisting>
Point * complex_to_point (Complex *z)
Point * complex_to_point (Complex *z)
...
...
doc/src/sgml/ref/create_table.sgml
View file @
4140085a
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_table.sgml,v 1.3
2 2000/07/22 02:39:10
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_table.sgml,v 1.3
3 2000/07/22 04:30:27
momjian Exp $
Postgres documentation
Postgres documentation
-->
-->
...
@@ -1351,7 +1351,7 @@ ERROR: <replaceable class="parameter">name</replaceable> referential integrity
...
@@ -1351,7 +1351,7 @@ ERROR: <replaceable class="parameter">name</replaceable> referential integrity
Define a UNIQUE table constraint for the table distributors:
Define a UNIQUE table constraint for the table distributors:
<programlisting>
<programlisting>
CREATE TABLE distributors (
CREATE TABLE distributors (
did DECIMAL(
0
3),
did DECIMAL(3),
name VARCHAR(40),
name VARCHAR(40),
UNIQUE(name)
UNIQUE(name)
);
);
...
@@ -1737,7 +1737,7 @@ CREATE TABLE films (
...
@@ -1737,7 +1737,7 @@ CREATE TABLE films (
<programlisting>
<programlisting>
CREATE TABLE distributors (
CREATE TABLE distributors (
did DECIMAL(
0
3) PRIMARY KEY DEFAULT NEXTVAL('serial'),
did DECIMAL(3) PRIMARY KEY DEFAULT NEXTVAL('serial'),
name VARCHAR(40) NOT NULL CHECK (name <> '')
name VARCHAR(40) NOT NULL CHECK (name <> '')
);
);
</programlisting>
</programlisting>
...
@@ -1762,7 +1762,7 @@ CREATE TABLE distributors (
...
@@ -1762,7 +1762,7 @@ CREATE TABLE distributors (
CREATE TABLE films (
CREATE TABLE films (
code CHAR(5),
code CHAR(5),
title VARCHAR(40),
title VARCHAR(40),
did DECIMAL(
0
3),
did DECIMAL(3),
date_prod DATE,
date_prod DATE,
kind CHAR(10),
kind CHAR(10),
len INTERVAL HOUR TO MINUTE,
len INTERVAL HOUR TO MINUTE,
...
@@ -1801,9 +1801,9 @@ CREATE TABLE distributors (
...
@@ -1801,9 +1801,9 @@ CREATE TABLE distributors (
<programlisting>
<programlisting>
CREATE TABLE films (
CREATE TABLE films (
code CHAR(
0
5),
code CHAR(5),
title VARCHAR(40),
title VARCHAR(40),
did DECIMAL(
0
3),
did DECIMAL(3),
date_prod DATE,
date_prod DATE,
kind CHAR(10),
kind CHAR(10),
len INTERVAL HOUR TO MINUTE,
len INTERVAL HOUR TO MINUTE,
...
@@ -1819,7 +1819,7 @@ CREATE TABLE films (
...
@@ -1819,7 +1819,7 @@ CREATE TABLE films (
<programlisting>
<programlisting>
CREATE TABLE distributors (
CREATE TABLE distributors (
did DECIMAL(
0
3),
did DECIMAL(3),
name CHAR VARYING(40),
name CHAR VARYING(40),
PRIMARY KEY(did)
PRIMARY KEY(did)
);
);
...
@@ -1827,7 +1827,7 @@ CREATE TABLE distributors (
...
@@ -1827,7 +1827,7 @@ CREATE TABLE distributors (
<programlisting>
<programlisting>
CREATE TABLE distributors (
CREATE TABLE distributors (
did DECIMAL(
0
3) PRIMARY KEY,
did DECIMAL(3) PRIMARY KEY,
name VARCHAR(40)
name VARCHAR(40)
);
);
</programlisting>
</programlisting>
...
@@ -1881,7 +1881,7 @@ CREATE GLOBAL TEMPORARY TABLE <replaceable class="parameter">table</replaceable>
...
@@ -1881,7 +1881,7 @@ CREATE GLOBAL TEMPORARY TABLE <replaceable class="parameter">table</replaceable>
<programlisting>
<programlisting>
CREATE TEMPORARY TABLE actors (
CREATE TEMPORARY TABLE actors (
id DECIMAL(
0
3),
id DECIMAL(3),
name VARCHAR(40),
name VARCHAR(40),
CONSTRAINT actor_id CHECK (id < 150)
CONSTRAINT actor_id CHECK (id < 150)
) ON COMMIT DELETE ROWS;
) ON COMMIT DELETE ROWS;
...
...
doc/src/sgml/ref/drop_type.sgml
View file @
4140085a
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_type.sgml,v 1.
6 1999/07/22 15:09:11 thomas
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_type.sgml,v 1.
7 2000/07/22 04:30:27 momjian
Exp $
Postgres documentation
Postgres documentation
-->
-->
...
@@ -109,7 +109,7 @@ ERROR: RemoveType: type '<replaceable class="parameter">typename</replaceable>'
...
@@ -109,7 +109,7 @@ ERROR: RemoveType: type '<replaceable class="parameter">typename</replaceable>'
</para>
</para>
<para>
<para>
Refer to <command>CREATE TYPE</command> for
Refer to <command>CREATE TYPE</command> for
infor
a
mation on how to create types.
information on how to create types.
</para>
</para>
<para>
<para>
It is the user's responsibility to remove any operators,
It is the user's responsibility to remove any operators,
...
...
doc/src/sgml/ref/fetch.sgml
View file @
4140085a
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/fetch.sgml,v 1.1
1 2000/07/22 02:39:10
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/fetch.sgml,v 1.1
2 2000/07/22 04:30:27
momjian Exp $
Postgres documentation
Postgres documentation
-->
-->
...
@@ -187,7 +187,7 @@ ERROR: FETCH/RELATIVE at current position is not supported
...
@@ -187,7 +187,7 @@ ERROR: FETCH/RELATIVE at current position is not supported
</computeroutput></term>
</computeroutput></term>
<listitem>
<listitem>
<para>
<para>
<acronym>SQL92</acronym> allows one to repet
a
tively retrieve the cursor
<acronym>SQL92</acronym> allows one to repet
i
tively retrieve the cursor
at its "current position" using the syntax
at its "current position" using the syntax
<synopsis>
<synopsis>
FETCH RELATIVE 0 FROM <replaceable class="PARAMETER">cursor</replaceable>
FETCH RELATIVE 0 FROM <replaceable class="PARAMETER">cursor</replaceable>
...
...
doc/src/sgml/ref/lock.sgml
View file @
4140085a
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/lock.sgml,v 1.2
0 2000/03/28 14:35:27 thomas
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/lock.sgml,v 1.2
1 2000/07/22 04:30:27 momjian
Exp $
Postgres documentation
Postgres documentation
-->
-->
...
@@ -284,7 +284,7 @@ ERROR <replaceable class="PARAMETER">name</replaceable>: Table does not exist.
...
@@ -284,7 +284,7 @@ ERROR <replaceable class="PARAMETER">name</replaceable>: Table does not exist.
<para>
<para>
For example, an application runs a transaction at READ COMMITTED isolation
For example, an application runs a transaction at READ COMMITTED isolation
level and needs to ensure the exist
a
nce of data in a table for the
level and needs to ensure the exist
e
nce of data in a table for the
duration of the
duration of the
transaction. To achieve this you could use SHARE lock mode over the
transaction. To achieve this you could use SHARE lock mode over the
table before querying. This will protect data from concurrent changes
table before querying. This will protect data from concurrent changes
...
...
doc/src/sgml/ref/pgctl-ref.sgml
View file @
4140085a
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/Attic/pgctl-ref.sgml,v 1.
5 2000/07/21 03:13:32
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/Attic/pgctl-ref.sgml,v 1.
6 2000/07/22 04:30:27
momjian Exp $
Postgres documentation
Postgres documentation
-->
-->
...
@@ -119,7 +119,7 @@ pg_ctl [-D <replaceable class="parameter">datadir</replaceable>] status
...
@@ -119,7 +119,7 @@ pg_ctl [-D <replaceable class="parameter">datadir</replaceable>] status
<para>
<para>
Immediate mode sends SIGUSR1
Immediate mode sends SIGUSR1
to the backends and lets them abort. In this case, database recovery
to the backends and lets them abort. In this case, database recovery
will be nec
c
essary on the next startup.
will be necessary on the next startup.
</para>
</para>
</listitem>
</listitem>
</varlistentry>
</varlistentry>
...
...
doc/src/sgml/ref/select.sgml
View file @
4140085a
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/ref/select.sgml,v 1.3
1 2000/07/21 18:51:24
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/ref/select.sgml,v 1.3
2 2000/07/22 04:30:27
momjian Exp $
Postgres documentation
Postgres documentation
-->
-->
...
@@ -306,7 +306,7 @@ WHERE <replaceable class="PARAMETER">boolean_expr</replaceable>
...
@@ -306,7 +306,7 @@ WHERE <replaceable class="PARAMETER">boolean_expr</replaceable>
<replaceable class="PARAMETER">boolean_expr</replaceable>
<replaceable class="PARAMETER">boolean_expr</replaceable>
can consist of any expression which evaluates to a boolean value.
can consist of any expression which evaluates to a boolean value.
In many cases, this expression will be
In many cases, this expression will be
:
<synopsis>
<synopsis>
<replaceable class="PARAMETER">expr</replaceable> <replaceable class="PARAMETER">cond_op</replaceable> <replaceable class="PARAMETER">expr</replaceable>
<replaceable class="PARAMETER">expr</replaceable> <replaceable class="PARAMETER">cond_op</replaceable> <replaceable class="PARAMETER">expr</replaceable>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment