diff --git a/doc/src/sgml/arch-pg.sgml b/doc/src/sgml/arch-pg.sgml
index fb6906698e4..b2f2b962db7 100644
--- a/doc/src/sgml/arch-pg.sgml
+++ b/doc/src/sgml/arch-pg.sgml
@@ -73,9 +73,9 @@ From that point on, the frontend process and the backend
"superuser."
Note that the Postgres superuser does not
have to be a special user (e.g., a user named
-"postgres"), although many systems are installed that way.
+postgres), although many systems are installed that way.
Furthermore, the Postgres superuser should
- definitely not be the Unix superuser, "root"! In any
+ definitely not be the Unix superuser, root! In any
case, all files relating to a database should belong to
this Postgres superuser.
diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml
index d95d543d1e5..0b9c10d3bb0 100644
--- a/doc/src/sgml/catalogs.sgml
+++ b/doc/src/sgml/catalogs.sgml
@@ -1,6 +1,6 @@
@@ -1737,7 +1737,7 @@
to assume very much about what sort of statistics it stores. Only
extremely general statistics (such as NULL-ness) are given dedicated
columns in pg_statistic. Everything else
- is stored in "slots", which are groups of associated columns whose
+ is stored in slots, which are groups of associated columns whose
content is identified by a code number in one of the slot's columns.
For more information see
src/include/catalog/pg_statistic.h.
@@ -1803,7 +1803,7 @@
int2A code number indicating the kind of statistics stored in the Nth
- "slot" of the pg_statistic row.
+ slot of the pg_statistic row.
@@ -1812,7 +1812,7 @@
oidpg_operator.oidAn operator used to derive the statistics stored in the
- Nth "slot". For example, a histogram slot would show the "<"
+ Nth slot. For example, a histogram slot would show the <
operator that defines the sort order of the data.
@@ -1822,7 +1822,7 @@
float4[]Numerical statistics of the appropriate kind for the Nth
- "slot", or NULL if the slot kind does not involve numerical values.
+ slot, or NULL if the slot kind does not involve numerical values.
@@ -1831,7 +1831,7 @@
text[]Column data values of the appropriate kind for the Nth
- "slot", or NULL if the slot kind does not store any data values.
+ slot, or NULL if the slot kind does not store any data values.
For datatype independence, all column data values are converted
to external textual form and stored as TEXT datums.
diff --git a/doc/src/sgml/charset.sgml b/doc/src/sgml/charset.sgml
index 0683cb56466..6d692264210 100644
--- a/doc/src/sgml/charset.sgml
+++ b/doc/src/sgml/charset.sgml
@@ -1,4 +1,4 @@
-
+
Localization>
@@ -396,7 +396,7 @@ perl: warning: Falling back to the standard locale ("C").
sets the default encoding to EUC_JP (Extended Unix Code for Japanese).
- Note that you can use "--encoding" instead of "-E" if you prefer
+ Note that you can use instead of if you prefer
to type longer option strings.
If no -E or --encoding option is given, the encoding
specified at configure time is used.
@@ -529,7 +529,7 @@ int PQsetClientEncoding(PGconn *conn, const char *conn)
- Note that it returns the "encoding id," not the encoding symbol string
+ Note that it returns the encoding id, not the encoding symbol string
such as EUC_JP. To convert an encoding id to an encoding symbol, you
can use:
@@ -549,7 +549,7 @@ char *pg_encoding_to_char(int encoding_id)
SET CLIENT_ENCODING TO 'encoding';
- Also you can use SQL92 syntax "SET NAMES" for this purpose:
+ Also you can use SQL92 syntax SET NAMES for this purpose:
SET NAMES 'encoding';
@@ -801,7 +801,7 @@ Sorry for my Eglish and C code, I'm not native :-)
- A locale such as "ch" is correctly sorted
+ A locale such as ch is correctly sorted
only if your system
supports that locale; older systems may not do so but new ones
(e.g. RH6.0) do.
diff --git a/doc/src/sgml/cvs.sgml b/doc/src/sgml/cvs.sgml
index 6df8f8df0e5..7deee94330f 100644
--- a/doc/src/sgml/cvs.sgml
+++ b/doc/src/sgml/cvs.sgml
@@ -1,5 +1,5 @@
@@ -206,8 +206,8 @@ $ cvs checkout -r REL6_4 tc
When you tag more than one file with the same tag you can think
- about the tag as "a curve drawn through a matrix of filename vs.
- revision number". Say we have 5 files with the following revisions:
+ about the tag as a curve drawn through a matrix of filename vs.
+ revision number. Say we have 5 files with the following revisions:
file1 file2 file3 file4 file5
@@ -220,7 +220,7 @@ $ cvs checkout -r REL6_4 tc
1.6
- then the tag "TAG" will reference
+ then the tag TAG will reference
file1-1.2, file2-1.3, etc.
@@ -487,7 +487,7 @@ pgsql
CVSup was originally developed as a
tool for distributing the FreeBSD
- source tree. It is available as a "port", and for those running
+ source tree. It is available as a port, and for those running
FreeBSD, if this is not sufficient to tell how to obtain and
install it then please contribute a procedure here.
diff --git a/doc/src/sgml/datatype.sgml b/doc/src/sgml/datatype.sgml
index dcda941ea36..20863a15321 100644
--- a/doc/src/sgml/datatype.sgml
+++ b/doc/src/sgml/datatype.sgml
@@ -1,5 +1,5 @@
@@ -1060,9 +1060,9 @@ SELECT b, char_length(b) FROM test2;
The ordering of month and day in date input can be ambiguous, therefore a setting
exists to specify how it should be interpreted in ambiguous cases. The command
SET DateStyle TO 'US' or SET DateStyle TO 'NonEuropean'
- specifies the variant "month before day", the command
+ specifies the variant month before day, the command
SET DateStyle TO 'European' sets the variant
- "day before month". The ISO style
+ day before month. The ISO style
is the default but this default can be changed at compile time or at run time.
@@ -2129,8 +2129,9 @@ SELECT * FROM test1 WHERE a;
- Paths are represented by connected sets of points. Paths can be "open", where
- the first and last points in the set are not connected, and "closed",
+ Paths are represented by connected sets of points. Paths can be
+ open, where
+ the first and last points in the set are not connected, and closed,
where the first and last point are connected. Functions
popen(p)
and
diff --git a/doc/src/sgml/datetime.sgml b/doc/src/sgml/datetime.sgml
index 47a31b89535..5fceb8ce7ba 100644
--- a/doc/src/sgml/datetime.sgml
+++ b/doc/src/sgml/datetime.sgml
@@ -1,5 +1,5 @@
@@ -426,7 +426,7 @@ Date/time details
interpreted as Australian timezone names. Without this option,
CST and EST are taken as
American timezone names, while SAT is interpreted as a
- noise word indicating "Saturday".
+ noise word indicating Saturday.
Postgres Australian Time Zones
@@ -494,7 +494,7 @@ Date/time details
If the token is numeric only, then it is either a single field
- or an ISO-8601 concatenated date (e.g. "19990113" for January 13, 1999)
+ or an ISO-8601 concatenated date (e.g. 19990113 for January 13, 1999)
or time (e.g. 141516 for 14:15:16).
@@ -553,7 +553,7 @@ Date/time details
If there are more than 4 digits,
and if no other date fields have been previously read, then interpret
- as a "concatenated date" (e.g. 19990118). 8
+ as a concatenated date (e.g. 19990118). 8
and 6 digits are interpreted as year, month, and day, while 7
and 5 digits are interpreted as year, day of year, respectively.
@@ -658,7 +658,7 @@ Date/time details
- "Julian Day" is different from "Julian Date".
+ Julian Day is different from Julian Date.
The Julian calendar was introduced by Julius Caesar in 45 BC. It was
in common use until the 1582, when countries started changing to the
diff --git a/doc/src/sgml/docguide.sgml b/doc/src/sgml/docguide.sgml
index 192991c1964..1c295a1a118 100644
--- a/doc/src/sgml/docguide.sgml
+++ b/doc/src/sgml/docguide.sgml
@@ -1,4 +1,4 @@
-
+
Documentation
@@ -626,7 +626,7 @@ gmake man
SGML source code to RTF, then
importing into ApplixWare-4.4.1.
After a little cleanup (see the following
- section) the output is "printed" to a postscript file.
+ section) the output is printed to a postscript file.
@@ -114,7 +114,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/ecpg.sgml,v 1.22 2001/09/10 21:58:46 petere
- The library has some methods that are "hidden" but may prove
+ The library has some methods that are hidden but may prove
useful.
@@ -316,7 +316,7 @@ struct sqlca
This means the host variable is of type bool and
the field in the Postgres database
- is neither 't' nor 'f'.
+ is neither 't'> nor 'f'>.
@@ -393,7 +393,7 @@ struct sqlca
100, Data not found line %d.
- This is a "normal" error that tells you that what you are querying cannot
+ This is a normal error that tells you that what you are querying cannot
be found or you are at the end of the cursor.
@@ -421,7 +421,7 @@ struct sqlca
Oracle version 7.0 on AIX> 3 uses OS-supported locks in shared
memory that allow an application designer to link an application
- in a "single tasking" way. Instead of starting one client
+ in a single tasking way. Instead of starting one client
process per application process, both the database part and the
application part run in the same process. In later versions of
Oracle this is no longer supported.
@@ -555,7 +555,7 @@ struct sqlca
message 'no data found'
- The error message for "no data" in:
+ The error message for no data in:
exec sql insert select from statement
diff --git a/doc/src/sgml/extend.sgml b/doc/src/sgml/extend.sgml
index eef5cd27e1a..d448237962a 100644
--- a/doc/src/sgml/extend.sgml
+++ b/doc/src/sgml/extend.sgml
@@ -1,5 +1,5 @@
@@ -67,7 +67,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/extend.sgml,v 1.11 2001/09/10 21:58:46 pete
or shared library) that implements a new type or function
and Postgres will load it as required. Code written
in SQL are even more trivial to add to the server.
- This ability to modify its operation "on the fly" makes
+ This ability to modify its operation on the fly makes
Postgres uniquely suited for rapid prototyping of new
applications and storage structures.
@@ -82,7 +82,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/extend.sgml,v 1.11 2001/09/10 21:58:46 pete
Types are divided into base types and composite types.
Base types are those, like int4, that are implemented
in a language such as C. They generally correspond to
- what are often known as "abstract data types"; Postgres
+ what are often known as abstract data types; Postgres
can only operate on such types through methods provided
by the user and only understands the behavior of such
types to the extent that the user describes them.
@@ -94,7 +94,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/extend.sgml,v 1.11 2001/09/10 21:58:46 pete
Postgres stores these types
in only one way (within the
file that stores all rows of a table) but the
- user can "look inside" at the attributes of these types
+ user can look inside at the attributes of these types
from the query language and optimize their retrieval by
(for example) defining indexes on the attributes.
Postgres base types are further
diff --git a/doc/src/sgml/geqo.sgml b/doc/src/sgml/geqo.sgml
index 78d7109e9fa..0e3cf606e6b 100644
--- a/doc/src/sgml/geqo.sgml
+++ b/doc/src/sgml/geqo.sgml
@@ -1,5 +1,5 @@
@@ -114,7 +114,7 @@ Genetic Optimizer
- According to the "comp.ai.genetic" FAQ it cannot be stressed too
+ According to the comp.ai.genetic> FAQ it cannot be stressed too
strongly that a GA is not a pure random search for a solution to a
problem. A GA uses stochastic processes, but the result is distinctly
non-random (better than random).
diff --git a/doc/src/sgml/history.sgml b/doc/src/sgml/history.sgml
index c9580713a58..46578737e15 100644
--- a/doc/src/sgml/history.sgml
+++ b/doc/src/sgml/history.sgml
@@ -1,5 +1,5 @@
@@ -40,7 +40,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/history.sgml,v 1.14 2001/09/09 17:21:59 pet
Postgres has undergone several major releases since
- then. The first "demoware" system became operational
+ then. The first demoware system became operational
in 1987 and was shown at the 1988 ACM-SIGMOD
Conference. We released Version 1, described in
,
@@ -186,7 +186,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/history.sgml,v 1.14 2001/09/09 17:21:59 pet
PostgreSQL
- By 1996, it became clear that the name "Postgres95" would
+ By 1996, it became clear that the name Postgres95 would
not stand the test of time. We chose a new name,
PostgreSQL, to reflect the relationship
between the original Postgres and the more
diff --git a/doc/src/sgml/indexcost.sgml b/doc/src/sgml/indexcost.sgml
index c3f8ea70e17..c3c75565669 100644
--- a/doc/src/sgml/indexcost.sgml
+++ b/doc/src/sgml/indexcost.sgml
@@ -1,5 +1,5 @@
@@ -170,7 +170,7 @@ amcostestimate (Query *root,
- The "start-up cost" is the part of the total scan cost that must be expended
+ The start-up cost is the part of the total scan cost that must be expended
before we can begin to fetch the first tuple. For most indexes this can
be taken as zero, but an index type with a high start-up cost might want
to set it nonzero.
diff --git a/doc/src/sgml/inherit.sgml b/doc/src/sgml/inherit.sgml
index a972242c4f7..403710cffb7 100644
--- a/doc/src/sgml/inherit.sgml
+++ b/doc/src/sgml/inherit.sgml
@@ -1,5 +1,5 @@
@@ -153,13 +153,13 @@ SELECT name, altitude
In previous versions of Postgres, the
default was not to get access to child tables. This was found to
be error prone and is also in violation of SQL99. Under the old
- syntax, to get the sub-tables you append "*" to the table name.
+ syntax, to get the sub-tables you append * to the table name.
For example
SELECT * from cities*;
You can still explicitly specify scanning child tables by appending
- "*", as well as explicitly specify not scanning child tables by
+ *, as well as explicitly specify not scanning child tables by
writing ONLY. But beginning in version 7.1, the default
behavior for an undecorated table name is to scan its child tables
too, whereas before the default was not to do so. To get the old
diff --git a/doc/src/sgml/jdbc.sgml b/doc/src/sgml/jdbc.sgml
index 3cbd8fd1180..6173b9f9386 100644
--- a/doc/src/sgml/jdbc.sgml
+++ b/doc/src/sgml/jdbc.sgml
@@ -1,5 +1,5 @@
@@ -2372,7 +2372,7 @@ maidast | 2610132
The only time you would access this class, is to use the create()
methods. These are not used by the driver, but issue one or more
- "create table" statements to the database, based on a Java Object
+ CREATE TABLE statements to the database, based on a Java Object
or Class that you want to serialize.
@@ -2865,7 +2865,7 @@ Methods
String original)
Encrypt a password given the clear-text password and a
-"salt".
+salt.
Parameters:
salt - A two-character string representing the salt
diff --git a/doc/src/sgml/libpgtcl.sgml b/doc/src/sgml/libpgtcl.sgml
index bc342fa495a..f40e9c491af 100644
--- a/doc/src/sgml/libpgtcl.sgml
+++ b/doc/src/sgml/libpgtcl.sgml
@@ -921,7 +921,7 @@ given chunk of code for each tuple in the result.
Usage
-This would work if table "table" has fields "control" and "name"
+This would work if table table> has fields control> and name>
(and, perhaps, other fields):
pg_select $pgconn "SELECT * from table" array {
@@ -1136,7 +1136,7 @@ The oid of the large object created.
mode can be any OR'ing together of INV_READ and INV_WRITE.
-The OR delimiter character is "|".
+The OR delimiter character is |.
[pg_lo_creat $conn "INV_READ|INV_WRITE"]
@@ -1237,7 +1237,7 @@ A file descriptor for use in later pg_lo* routines.
Usage
-Mode can be either "r", "w", or "rw".
+Mode can be either r>, w>, or rw>.
@@ -1583,7 +1583,7 @@ File descriptor for the large object from pg_lo_open.
whence
- whence can be "SEEK_CUR", "SEEK_END", or "SEEK_SET"
+ whence can be SEEK_CUR>, SEEK_END>, or SEEK_SET>
@@ -1614,7 +1614,7 @@ to offset bytes from the beginning
whence
-can be "SEEK_CUR", "SEEK_END", or "SEEK_SET".
+can be SEEK_CUR, SEEK_END>, or SEEK_SET.
diff --git a/doc/src/sgml/libpq++.sgml b/doc/src/sgml/libpq++.sgml
index 6d6100a65ce..bbb6b6b5fc0 100644
--- a/doc/src/sgml/libpq++.sgml
+++ b/doc/src/sgml/libpq++.sgml
@@ -1,5 +1,5 @@
@@ -779,7 +779,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/libpq++.sgml,v 1.31 2001/09/10 21:58:
PgDatabase::PutLine
or when the last string has been received from the backend using
PgDatabase::GetLine.
- It must be issued or the backend may get "out of sync" with
+ It must be issued or the backend may get out of sync with
the frontend. Upon return from this function, the backend is ready to
receive the next query.
diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml
index e00e735ca55..2d6bc0586cf 100644
--- a/doc/src/sgml/libpq.sgml
+++ b/doc/src/sgml/libpq.sgml
@@ -1,5 +1,5 @@
@@ -189,16 +189,16 @@ PGconn *PQconnectdb(const char *conninfo)
requiressl
- Set to '1' to require SSL connection to the backend. Libpq>
+ Set to 1 to require SSL connection to the backend. Libpq>
will then refuse to connect if the server does not support
- SSL. Set to '0' (default) to negotiate with server.
+ SSL. Set to 0 (default) to negotiate with server.
If any parameter is unspecified, then the corresponding
- environment variable (see "Environment Variables" section)
+ environment variable (see )
is checked. If the environment variable is not set either,
then hardwired defaults are used.
The return value is a pointer to an abstract struct
@@ -1158,7 +1158,7 @@ Oid PQoidValue(const PGresult *res);
PQoidStatus
Returns a string with the object id of the tuple inserted, if the
SQL command was an INSERT.
- (The string will be "0" if the INSERT did not insert exactly one
+ (The string will be 0> if the INSERT did not insert exactly one
row, or if the target table does not have OIDs.) If the command
was not an INSERT, returns an empty string.
@@ -1328,7 +1328,7 @@ functions:
int PQconsumeInput(PGconn *conn);
-PQconsumeInput normally returns 1 indicating "no error",
+PQconsumeInput normally returns 1 indicating no error,
but returns 0 if there was some kind of trouble (in which case
PQerrorMessage is set). Note that the result does not say
whether any input data was actually collected. After calling
@@ -1416,8 +1416,7 @@ When the main loop detects input ready, it should call
PQconsumeInput to read the input. It can then call
PQisBusy, followed by PQgetResult
if PQisBusy returns false (0). It can also call
-PQnotifies to detect NOTIFY messages (see "Asynchronous
-Notification", below).
+PQnotifies to detect NOTIFY messages (see ).
@@ -1653,12 +1652,12 @@ terminating newline has not yet been read.
Notice that the application must check to see if a
-new line consists of the two characters "\.",
+new line consists of the two characters \.,
which indicates that the backend server has finished sending
the results of the copy command.
If the application might
receive lines that are more than length-1 characters long,
-care is needed to be sure one recognizes the "\." line correctly
+care is needed to be sure one recognizes the \. line correctly
(and does not, for example, mistake the end of a long data line
for a terminator line).
The code in
@@ -1703,7 +1702,7 @@ The data returned will not extend beyond a newline character. If possible
a whole line will be returned at one time. But if the buffer offered by
the caller is too small to hold a line sent by the backend, then a partial
data line will be returned. This can be detected by testing whether the
-last returned byte is "\n" or not.
+last returned byte is \n or not.
The returned string is not null-terminated. (If you want to add a
terminating null, be sure to pass a bufsize one smaller than the room
actually available.)
@@ -1720,7 +1719,7 @@ int PQputline(PGconn *conn,
const char *string);
Note the application must explicitly send the two
-characters "\." on a final line to indicate to
+characters \. on a final line to indicate to
the backend that it has finished sending its data.
@@ -1750,7 +1749,7 @@ specified directly.
sent to the backend using PQputline or when the
last string has been received from the backend
using PGgetline. It must be issued or the backend
- may get "out of sync" with the frontend. Upon
+ may get out of sync with the frontend. Upon
return from this function, the backend is ready to
receive the next query.
The return value is 0 on successful completion,
@@ -1853,7 +1852,7 @@ PQsetNoticeProcessor(PGconn *conn,
-By default, libpq prints "notice"
+By default, libpq prints notice
messages from the backend on stderr,
as well as a few error messages that it generates by itself.
This behavior can be overridden by supplying a callback function that
diff --git a/doc/src/sgml/lobj.sgml b/doc/src/sgml/lobj.sgml
index 25ebce1f64e..475fe2d5f21 100644
--- a/doc/src/sgml/lobj.sgml
+++ b/doc/src/sgml/lobj.sgml
@@ -1,5 +1,5 @@
@@ -49,7 +49,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/lobj.sgml,v 1.19 2001/09/10 21:58:47 petere
The Inversion large object implementation breaks large
- objects up into "chunks" and stores the chunks in
+ objects up into chunks and stores the chunks in
tuples in the database. A B-tree index guarantees fast
searches for the correct chunk number when doing random
access reads and writes.
diff --git a/doc/src/sgml/manage-ag.sgml b/doc/src/sgml/manage-ag.sgml
index afaaa3506c8..76f659ae216 100644
--- a/doc/src/sgml/manage-ag.sgml
+++ b/doc/src/sgml/manage-ag.sgml
@@ -1,5 +1,5 @@
@@ -237,7 +237,7 @@ Type: \copyright for distribution terms
workspace maintained by the terminal monitor.
The psql program responds to escape
codes that begin
- with the backslash character, "\". For example, you
+ with the backslash character, \. For example, you
can get help on the syntax of various
Postgres SQL commands by typing:
@@ -278,7 +278,7 @@ Type: \copyright for distribution terms
Single-line comments are denoted by two dashes
("--"). Everything after the dashes up to the end of the
line is ignored. Multiple-line comments, and comments within a line,
- are denoted by "/* ... */", a convention borrowed
+ are denoted by /* ... */, a convention borrowed
from Ingres.
diff --git a/doc/src/sgml/manage.sgml b/doc/src/sgml/manage.sgml
index b6eaa18de50..f89e316f90b 100644
--- a/doc/src/sgml/manage.sgml
+++ b/doc/src/sgml/manage.sgml
@@ -1,5 +1,5 @@
@@ -225,7 +225,7 @@ This prompt indicates that psql is listening
to you and that you can type SQL queries into a
workspace maintained by the terminal monitor.
The psql program responds to escape codes that begin
- with the backslash character, "\". For example, you
+ with the backslash character, \. For example, you
can get help on the syntax of various
PostgreSQL SQL commands by typing:
@@ -240,7 +240,7 @@ mydb=> \g
This tells the server to process the query. If you
- terminate your query with a semicolon, the "\g" is not
+ terminate your query with a semicolon, the \g is not
necessary.
psql will automatically process semicolon terminated queries.
To read queries from a file, say myFile, instead of
@@ -259,9 +259,9 @@ mydb=> \q
prompt.)
White space (i.e., spaces, tabs and newlines) may be
used freely in SQL queries. Single-line comments are denoted by
- "--". Everything after the dashes up to the end of the
+ --. Everything after the dashes up to the end of the
line is ignored. Multiple-line comments, and comments within a line,
- are denoted by "/* ... */".
+ are denoted by /* ... */.
diff --git a/doc/src/sgml/mvcc.sgml b/doc/src/sgml/mvcc.sgml
index 407feb593f0..bec300fc9b8 100644
--- a/doc/src/sgml/mvcc.sgml
+++ b/doc/src/sgml/mvcc.sgml
@@ -1,5 +1,5 @@
@@ -331,7 +331,7 @@ ERROR: Can't serialize access due to concurrent update
the row still exists at the time it is returned (i.e. sometime after the
current transaction began); the row might have been modified or deleted
by an already-committed transaction that committed after this one started.
- Even if the row is still valid "now", it could be changed or deleted
+ Even if the row is still valid now, it could be changed or deleted
before the current transaction does a commit or rollback.
@@ -339,7 +339,7 @@ ERROR: Can't serialize access due to concurrent update
Another way to think about it is that each
transaction sees a snapshot of the database contents, and concurrently
executing transactions may very well see different snapshots. So the
- whole concept of "now" is somewhat suspect anyway. This is not normally
+ whole concept of now is somewhat suspect anyway. This is not normally
a big problem if the client applications are isolated from each other,
but if the clients can communicate via channels outside the database
then serious confusion may ensue.
diff --git a/doc/src/sgml/notation.sgml b/doc/src/sgml/notation.sgml
index 55850981041..a41fa5aba87 100644
--- a/doc/src/sgml/notation.sgml
+++ b/doc/src/sgml/notation.sgml
@@ -1,5 +1,5 @@
@@ -29,10 +29,10 @@ $Header: /cvsroot/pgsql/doc/src/sgml/notation.sgml,v 1.15 2001/09/09 17:21:59 pe
In a command synopsis, brackets
- ("[" and "]") indicate an optional phrase or keyword.
+ ([ and ]) indicate an optional phrase or keyword.
Anything in braces
- ("{" and "}") and containing vertical bars
- ("|")
+ ({ and }) and containing vertical bars
+ (|)
indicates that you must choose one.
diff --git a/doc/src/sgml/odbc.sgml b/doc/src/sgml/odbc.sgml
index 086dcd09bac..95e0a5092fd 100644
--- a/doc/src/sgml/odbc.sgml
+++ b/doc/src/sgml/odbc.sgml
@@ -1,5 +1,5 @@
@@ -451,7 +451,7 @@ TextAsLongVarchar=0
- The 'Ready' message will appear in the lower left corner of the data
+ The Ready message will appear in the lower left corner of the data
window. This indicates that you can now enter queries.
@@ -663,13 +663,13 @@ can't load library 'libodbc.so'\n", 61) = -1 EIO (I/O error)
- Search for 'null_clause = "NULL"
+ Search for null_clause = "NULL".
- Change this to null_clause = ""
+ Change this to null_clause = "".
@@ -713,7 +713,7 @@ can't load library 'libodbc.so'\n", 61) = -1 EIO (I/O error)
- Enter the value "sqldemo", then click OK.
+ Enter the value sqldemo, then click OK.
diff --git a/doc/src/sgml/perform.sgml b/doc/src/sgml/perform.sgml
index 0dcdf30503f..6e82d82aad1 100644
--- a/doc/src/sgml/perform.sgml
+++ b/doc/src/sgml/perform.sgml
@@ -1,5 +1,5 @@
@@ -192,13 +192,13 @@ Nested Loop (cost=0.00..269.11 rows=47 width=296)
In this nested-loop join, the outer scan is the same index scan we had
in the example before last, and so its cost and row count are the same
- because we are applying the "unique1 < 50" WHERE clause at that node.
- The "t1.unique2 = t2.unique2" clause isn't relevant yet, so it doesn't
+ because we are applying the unique1 < 50 WHERE clause at that node.
+ The t1.unique2 = t2.unique2 clause is not relevant yet, so it doesn't
affect row count of the outer scan. For the inner scan, the unique2 value of the
current
outer-scan tuple is plugged into the inner index scan
to produce an index qualification like
- "t2.unique2 = constant". So we get the
+ t2.unique2 = constant. So we get the
same inner-scan plan and costs that we'd get from, say, explain select
* from tenk2 where unique2 = 42. The costs of the loop node are then set
on the basis of the cost of the outer scan, plus one repetition of the
@@ -211,7 +211,7 @@ Nested Loop (cost=0.00..269.11 rows=47 width=296)
of the two scans' row counts, but that's not true in general, because
in general you can have WHERE clauses that mention both relations and
so can only be applied at the join point, not to either input scan.
- For example, if we added "WHERE ... AND t1.hundred < t2.hundred",
+ For example, if we added WHERE ... AND t1.hundred < t2.hundred,
that would decrease the output row count of the join node, but not change
either input scan.
@@ -240,7 +240,7 @@ Hash Join (cost=173.44..557.03 rows=47 width=296)
This plan proposes to extract the 50 interesting rows of tenk1
using ye same olde index scan, stash them into an in-memory hash table,
and then do a sequential scan of tenk2, probing into the hash table
- for possible matches of "t1.unique2 = t2.unique2" at each tenk2 tuple.
+ for possible matches of t1.unique2 = t2.unique2 at each tenk2 tuple.
The cost to read tenk1 and set up the hash table is entirely start-up
cost for the hash join, since we won't get any tuples out until we can
start reading tenk2. The total time estimate for the join also
diff --git a/doc/src/sgml/plpython.sgml b/doc/src/sgml/plpython.sgml
index 69894bf5aad..47d60baa889 100644
--- a/doc/src/sgml/plpython.sgml
+++ b/doc/src/sgml/plpython.sgml
@@ -1,4 +1,4 @@
-
+
PL/Python - Python Procedural Language
@@ -69,23 +69,23 @@ def __plpython_procedure_myfunc_23456():
dictionary, as mentioned above.
-
+
When a function is used in a trigger, the dictionary TD contains
- transaction related values. The trigger tuples are in TD["new"]
- and/or TD["old"] depending on the trigger event. TD["event"]
- contains the event as a string ("INSERT", "UPDATE", "DELETE", or
- "UNKNOWN"). TD["when"] contains one of ("BEFORE", "AFTER", or
- "UNKNOWN"). TD["level"] contains one of ("ROW", "STATEMENT", or
- "UNKNOWN"). TD["name"] contains the trigger name, and TD["relid"]
+ transaction related values. The trigger tuples are in TD["new"]>
+ and/or TD["old"]> depending on the trigger event. TD["event"]>
+ contains the event as a string (INSERT>, UPDATE>, DELETE>, or
+ UNKNOWN>). TD["when"] contains one of (BEFORE>, AFTER>, or
+ UNKNOWN>). TD["level"]> contains one of ROW>, STATEMENT>, or
+ UNKNOWN>. TD["name"]> contains the trigger name, and TD["relid"]>
contains the relation id of the table on which the trigger occurred.
If the trigger was called with arguments they are available
- in TD["args"][0] to TD["args"][(n -1)]
+ in TD["args"][0]> to TD["args"][(n -1)]>.
- If the trigger 'when' is "BEFORE", you may Return 'None' or "OK"
- from the python function to indicate the tuple is unmodified,
- "SKIP" to abort the event, or "MODIFIED" to indicate you've
+ If the trigger when is BEFORE>, you may return None or "OK"
+ from the Python function to indicate the tuple is unmodified,
+ "SKIP"> to abort the event, or "MODIFIED"> to indicate you've
modified the tuple.
diff --git a/doc/src/sgml/plsql.sgml b/doc/src/sgml/plsql.sgml
index 4c13580ef46..fcae77758a3 100644
--- a/doc/src/sgml/plsql.sgml
+++ b/doc/src/sgml/plsql.sgml
@@ -1,5 +1,5 @@
@@ -739,7 +739,7 @@ EXECUTE query-string
When working with dynamic queries you will have to face
escaping of single quotes in PL/pgSQL>. Please refer to the
- table available at the "Porting from Oracle PL/SQL" chapter
+ table available at the
for a detailed explanation that will save you some effort.
@@ -961,7 +961,7 @@ END IF;
- When you use the "ELSE IF" statement, you are actually
+ When you use the ELSE IF> statement, you are actually
nesting an IF statement inside the ELSE
statement. Thus you need one END IF statement for each
nested IF and one for the parent IF-ELSE.
@@ -1221,7 +1221,7 @@ SELECT INTO targetexpressions
Once a record or row has been assigned to a RECORD variable,
- you can use the "." (dot) notation to access fields in that
+ you can use the .> (dot) notation to access fields in that
record:
DECLARE
diff --git a/doc/src/sgml/pltcl.sgml b/doc/src/sgml/pltcl.sgml
index 29c1850f18c..0c2e541e3fa 100644
--- a/doc/src/sgml/pltcl.sgml
+++ b/doc/src/sgml/pltcl.sgml
@@ -1,5 +1,5 @@
@@ -365,31 +365,31 @@ CREATE TRIGGER trig_mytab_modcount BEFORE INSERT OR UPDATE ON mytab
spi_execp).
Think about a query string like
-
+
"SELECT '$val' AS ret"
-
+
- where the Tcl variable val actually contains "doesn't". This would result
+ where the Tcl variable val actually contains doesn't. This would result
in the final query string
-
-"SELECT 'doesn't' AS ret"
-
+
+SELECT 'doesn't' AS ret
+
which would cause a parse error during
spi_exec or
spi_prepare.
It should contain
-
-"SELECT 'doesn''t' AS ret"
-
+
+SELECT 'doesn''t' AS ret
+
and has to be written as
-
-"SELECT '[ quote $val ]' AS ret"
-
+
+SELECT '[ quote $val ]' AS ret
+
diff --git a/doc/src/sgml/problems.sgml b/doc/src/sgml/problems.sgml
index 56425509035..58d77c8d1af 100644
--- a/doc/src/sgml/problems.sgml
+++ b/doc/src/sgml/problems.sgml
@@ -1,5 +1,5 @@
@@ -102,7 +102,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/problems.sgml,v 2.8 2001/09/09 17:21:59 pet
The most important thing to remember about bug reporting is to state all
the facts and only facts. Do not speculate what you think went wrong, what
- "it seemed to do", or which part of the program has a fault.
+ it seemed to do, or which part of the program has a fault.
If you are not familiar with the implementation you would probably guess
wrong and not help us a bit. And even if you are, educated explanations are
a great supplement to but no substitute for facts. If we are going to fix
@@ -144,7 +144,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/problems.sgml,v 2.8 2001/09/09 17:21:59 pet
please try to isolate the offending queries. We will probably not set up a
web server to reproduce your problem. In any case remember to provide
the exact input files, do not guess that the problem happens for
- "large files" or "mid-size databases", etc. since this
+ large files or mid-size databases, etc. since this
information is too inexact to be of use.
@@ -172,12 +172,12 @@ $Header: /cvsroot/pgsql/doc/src/sgml/problems.sgml,v 2.8 2001/09/09 17:21:59 pet
The output you expected is very important to state. If you just write
- "This command gives me that output." or "This is not
- what I expected.", we might run it ourselves, scan the output, and
+ This command gives me that output. or This is not
+ what I expected., we might run it ourselves, scan the output, and
think it looks OK and is exactly what we expected. We should not have to
spend the time to decode the exact semantics behind your commands.
- Especially refrain from merely saying that "This is not what SQL says/Oracle
- does." Digging out the correct behavior from SQL
+ Especially refrain from merely saying that This is not what SQL says/Oracle
+ does. Digging out the correct behavior from SQL
is not a fun undertaking, nor do we all know how all the other relational
databases out there behave. (If your problem is a program crash you can
obviously omit this item.)
@@ -231,7 +231,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/problems.sgml,v 2.8 2001/09/09 17:21:59 pet
Platform information. This includes the kernel name and version, C library,
processor, memory information. In most cases it is sufficient to report
the vendor and version, but do not assume everyone knows what exactly
- "Debian" contains or that everyone runs on Pentiums. If
+ Debian contains or that everyone runs on Pentiums. If
you have installation problems then information about compilers, make,
etc. is also necessary.
@@ -254,12 +254,12 @@ $Header: /cvsroot/pgsql/doc/src/sgml/problems.sgml,v 2.8 2001/09/09 17:21:59 pet
When writing a bug report, please choose non-confusing terminology.
- The software package as such is called "PostgreSQL",
- sometimes "Postgres" for short. (Sometimes
- the abbreviation "Pgsql" is used but don't do that.) When you
+ The software package as such is called PostgreSQL,
+ sometimes Postgres for short. (Sometimes
+ the abbreviation Pgsql is used but don't do that.) When you
are specifically talking about the backend server, mention that, do not
- just say "Postgres crashes". The interactive frontend is called
- "psql" and is for all intends and purposes completely separate
+ just say Postgres crashes. The interactive frontend is called
+ psql and is for all intends and purposes completely separate
from the backend.
diff --git a/doc/src/sgml/protocol.sgml b/doc/src/sgml/protocol.sgml
index a6351dd8bd2..b69719f7b93 100644
--- a/doc/src/sgml/protocol.sgml
+++ b/doc/src/sgml/protocol.sgml
@@ -1,4 +1,4 @@
-
+
Frontend/Backend Protocol
@@ -628,8 +628,8 @@ This section describes the base data types used in messages.
- A character array of exactly n bytes interpreted as a '\0'
- terminated string. The '\0' is omitted if there is
+ A character array of exactly n bytes interpreted as a
+ null-terminated string. The zero-byte is omitted if there is
insufficient room. If s is specified it is the literal value.
Eg. LimString32, LimString64("user").
@@ -641,7 +641,7 @@ This section describes the base data types used in messages.
- A conventional C '\0' terminated string with no length
+ A conventional C null-terminated string with no length
limitation.
If s is specified it is the literal value.
Eg. String, String("user").
@@ -739,7 +739,7 @@ AsciiRow (B)
Specifies the value of the field itself in ASCII
characters. n is the above
size minus 4.
- There is no trailing '\0' in the field data; the front
+ There is no trailing zero-byte in the field data; the front
end must add one if it wants one.
@@ -1073,7 +1073,7 @@ CancelRequest (F)
The cancel request code. The value is chosen to contain
- "1234" in the most significant 16 bits, and "5678" in the
+ 1234> in the most significant 16 bits, and 5678> in the
least 16 significant bits. (To avoid confusion, this code
must not be the same as any protocol version number.)
@@ -1226,7 +1226,7 @@ CursorResponse (B)
- The name of the cursor. This will be "blank" if the cursor is
+ The name of the cursor. This will be blank> if the cursor is
implicit.
diff --git a/doc/src/sgml/pygresql.sgml b/doc/src/sgml/pygresql.sgml
index 5396791e14d..4d8a28813dd 100644
--- a/doc/src/sgml/pygresql.sgml
+++ b/doc/src/sgml/pygresql.sgml
@@ -1,4 +1,4 @@
-
+
PyGreSQL - Python Interface
@@ -236,10 +236,10 @@ cc -fpic -shared -o _pg.so -I[pyInc] -I[pgInc] -L[pgLib] -lpq pgmodule.c
- Find the directory where your 'Setup'
+ Find the directory where your Setup
file lives (usually ??/Modules) in
the Python source hierarchy and
- copy or symlink the 'pgmodule.c' file there.
+ copy or symlink the pgmodule.c file there.
@@ -305,9 +305,9 @@ _pg pgmodule.c -I[pgInc] -L[pgLib] -lpq # -lcrypt # needed on some systems
If you want a shared module, make sure that the
- "*shared*" keyword is uncommented and
+ *shared* keyword is uncommented and
add the above line below it. You used to need to install
- your shared modules with "make sharedinstall" but this no
+ your shared modules with make sharedinstall> but this no
longer seems to be true.
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml
index 7727f06cbd5..0381610896c 100644
--- a/doc/src/sgml/ref/copy.sgml
+++ b/doc/src/sgml/ref/copy.sgml
@@ -1,5 +1,5 @@
@@ -380,7 +380,7 @@ ERROR: reasonSignature
-12-byte sequence "PGBCOPY\n\377\r\n\0" --- note that the null
+12-byte sequence PGBCOPY\n\377\r\n\0> --- note that the null
is a required part of the signature. (The signature is designed to allow
easy identification of files that have been munged by a non-8-bit-clean
transfer. This signature will be changed by newline-translation
diff --git a/doc/src/sgml/ref/create_aggregate.sgml b/doc/src/sgml/ref/create_aggregate.sgml
index 4ef5f983704..fc8f064f7a1 100644
--- a/doc/src/sgml/ref/create_aggregate.sgml
+++ b/doc/src/sgml/ref/create_aggregate.sgml
@@ -1,5 +1,5 @@
@@ -206,7 +206,7 @@ CREATE
- If the state transition function is declared "strict" in pg_proc,
+ If the state transition function is declared strict,
then it cannot be called with NULL inputs. With such a transition
function, aggregate execution behaves as follows. NULL input values
are ignored (the function is not called and the previous state value
@@ -230,7 +230,7 @@ CREATE
- If the final function is declared "strict", then it will not
+ If the final function is declared strict, then it will not
be called when the ending state value is NULL; instead a NULL result
will be output automatically. (Of course this is just the normal
behavior of strict functions.) In any case the final function has
diff --git a/doc/src/sgml/ref/create_database.sgml b/doc/src/sgml/ref/create_database.sgml
index 4b5c57bbbb4..2988c01351f 100644
--- a/doc/src/sgml/ref/create_database.sgml
+++ b/doc/src/sgml/ref/create_database.sgml
@@ -1,5 +1,5 @@
@@ -186,11 +186,11 @@ CREATE DATABASE name
as an environment variable name, which must be known to the
server process. This way the database administrator can
exercise control over locations in which databases can be created.
- (A customary choice is, e.g., 'PGDATA2'.)
+ (A customary choice is, e.g., PGDATA2.)
If the server is compiled with ALLOW_ABSOLUTE_DBPATHS
(not so by default), absolute path names, as identified by
a leading slash
- (e.g., '/usr/local/pgsql/data'),
+ (e.g., /usr/local/pgsql/data),
are allowed as well.
diff --git a/doc/src/sgml/ref/create_operator.sgml b/doc/src/sgml/ref/create_operator.sgml
index e1ae4034d6e..40c9799772f 100644
--- a/doc/src/sgml/ref/create_operator.sgml
+++ b/doc/src/sgml/ref/create_operator.sgml
@@ -1,5 +1,5 @@
@@ -185,19 +185,20 @@ CREATE
- "$" cannot be defined as a single-character operator,
+ $ cannot be defined as a single-character operator,
although it can be part of a multi-character operator name.
- "--" and "/*" cannot appear anywhere in an operator name,
+ -- and /* cannot appear anywhere in an operator name,
since they will be taken as the start of a comment.
- A multi-character operator name cannot end in "+" or "-",
+ A multi-character operator name cannot end in + or
+ -,
unless the name also contains at least one of these characters:
~ ! @ # % ^ & | ` ? $
@@ -214,7 +215,7 @@ CREATE
When working with non-SQL-standard operator names, you will usually
need to separate adjacent operators with spaces to avoid ambiguity.
- For example, if you have defined a left-unary operator named "@",
+ For example, if you have defined a left-unary operator named @,
you cannot write X*@Y; you must write
X* @Y to ensure that
Postgres reads it as two operator names
@@ -223,7 +224,7 @@ CREATE
- The operator "!=" is mapped to "<>" on input, so these two names
+ The operator != is mapped to <> on input, so these two names
are always equivalent.
diff --git a/doc/src/sgml/ref/create_sequence.sgml b/doc/src/sgml/ref/create_sequence.sgml
index ec44b35f1ab..953ca916849 100644
--- a/doc/src/sgml/ref/create_sequence.sgml
+++ b/doc/src/sgml/ref/create_sequence.sgml
@@ -1,5 +1,5 @@
@@ -270,7 +270,7 @@ SELECT last_value FROM seqname;
that obtain numbers from the same sequence, a nextval operation
is never rolled back; that is, once a value has been fetched it is
considered used, even if the transaction that did the nextval later
- aborts. This means that aborted transactions may leave unused "holes"
+ aborts. This means that aborted transactions may leave unused holes
in the sequence of assigned values. setval operations are never
rolled back, either.
@@ -315,7 +315,7 @@ SELECT last_value FROM seqname;
Each backend uses its own cache to store preallocated numbers.
Numbers that are cached but not used in the current session will be
- lost, resulting in "holes" in the sequence.
+ lost, resulting in holes in the sequence.
diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml
index 759962be0e4..1d627c41986 100644
--- a/doc/src/sgml/ref/create_table.sgml
+++ b/doc/src/sgml/ref/create_table.sgml
@@ -1,5 +1,5 @@
@@ -236,7 +236,7 @@ ERROR: Relation 'table' already ex
CREATE TABLE will enter a new, initially empty table
- into the current database. The table will be "owned" by the user issuing the
+ into the current database. The table will be owned by the user issuing the
command.
@@ -1253,8 +1253,8 @@ ERROR: name referential integrity
A table constraint is an integrity constraint defined on one or
- more columns of a table. The four variations of "Table
- Constraint" are:
+ more columns of a table. The four variations of Table
+ Constraint are:
UNIQUECHECK
@@ -1898,7 +1898,7 @@ CREATE GLOBAL TEMPORARY TABLE table
NULL clause
- The NULL "constraint" (actually a non-constraint) is a
+ The NULL constraint (actually a non-constraint) is a
Postgres extension to SQL92 that is
included for symmetry with the NOT NULL clause (and for compatibility
with some other RDBMSes). Since it is the
@@ -1927,7 +1927,7 @@ CREATE GLOBAL TEMPORARY TABLE table
@@ -126,7 +126,7 @@ CREATE
being inserted (for INSERT and
UPDATE operations only). If
the trigger fires after the event, all changes, including the
- last insertion, update, or deletion, are "visible" to the trigger.
+ last insertion, update, or deletion, are visible to the trigger.
diff --git a/doc/src/sgml/ref/create_type.sgml b/doc/src/sgml/ref/create_type.sgml
index 750fdcfe899..ab2e7517f1c 100644
--- a/doc/src/sgml/ref/create_type.sgml
+++ b/doc/src/sgml/ref/create_type.sgml
@@ -1,5 +1,5 @@
@@ -153,9 +153,9 @@ CREATE TYPE typename ( INPUT =
Storage alignment requirement of the data type. If specified, must
- be 'char', 'int2',
- 'int4', or 'double';
- the default is 'int4'.
+ be char, int2,
+ int4, or double;
+ the default is int4.
@@ -165,9 +165,9 @@ CREATE TYPE typename ( INPUT =
Storage technique for the data type. If specified, must
- be 'plain', 'external',
- 'extended', or 'main';
- the default is 'plain'.
+ be plain, external,
+ extended, or main;
+ the default is plain.
@@ -228,7 +228,7 @@ CREATE
output_function
performs the reverse transformation. Both
the input and output functions must be declared to take
- one or two arguments of type "opaque".
+ one or two arguments of type opaque.
@@ -237,7 +237,7 @@ CREATE
positive integer, or variable length,
in which case Postgres assumes that the new type has the
same format
- as the Postgres-supplied data type, "text".
+ as the Postgres-supplied data type, text.
To indicate that a type is variable length, set
internallength
to .
@@ -264,7 +264,7 @@ CREATE
A default value is optionally available in case a user
- wants some specific bit pattern to mean "data not present."
+ wants some specific bit pattern to mean data not present.
Specify the default with the DEFAULT keyword.
How does the user specify that bit pattern and associate
it with the fact that the data is not present>
diff --git a/doc/src/sgml/ref/declare.sgml b/doc/src/sgml/ref/declare.sgml
index 6e00edb4b8d..e3b7b1d4a3c 100644
--- a/doc/src/sgml/ref/declare.sgml
+++ b/doc/src/sgml/ref/declare.sgml
@@ -1,5 +1,5 @@
@@ -210,9 +210,9 @@ ERROR: DECLARE CURSOR may only be used in begin/end transaction blocks
As an example, if a query returns a value of one from an integer column,
- you would get a string of '1' with a default cursor
+ you would get a string of 1> with a default cursor
whereas with a binary cursor you would get
- a 4-byte value equal to control-A ('^A').
+ a 4-byte value equal to control-A (^A).
@@ -227,7 +227,7 @@ ERROR: DECLARE CURSOR may only be used in begin/end transaction blocks
Postgres does not resolve
byte ordering or representation issues for binary cursors.
Therefore, if your client machine and server machine use different
- representations (e.g., "big-endian" versus "little-endian"),
+ representations (e.g., big-endian versus little-endian),
you will probably not want your data returned in
binary format.
However, binary cursors may be a
diff --git a/doc/src/sgml/ref/fetch.sgml b/doc/src/sgml/ref/fetch.sgml
index ee042438675..e3e5f77b5af 100644
--- a/doc/src/sgml/ref/fetch.sgml
+++ b/doc/src/sgml/ref/fetch.sgml
@@ -1,5 +1,5 @@
@@ -188,7 +188,7 @@ ERROR: FETCH/RELATIVE at current position is not supported
SQL92 allows one to repetitively retrieve the cursor
- at its "current position" using the syntax
+ at its current position using the syntax
FETCH RELATIVE 0 FROM cursor.
diff --git a/doc/src/sgml/ref/initlocation.sgml b/doc/src/sgml/ref/initlocation.sgml
index a7abfcdb66c..de7e46a6357 100644
--- a/doc/src/sgml/ref/initlocation.sgml
+++ b/doc/src/sgml/ref/initlocation.sgml
@@ -1,5 +1,5 @@
@@ -37,7 +37,7 @@ Postgres documentation
which is referenced. See the examples at the end.
- In order to use this command you must be logged in (using 'su', for example)
+ In order to use this command you must be logged in (using su, for example)
as the database superuser.
diff --git a/doc/src/sgml/ref/notify.sgml b/doc/src/sgml/ref/notify.sgml
index 02a0e4c3e1d..067f3732a5e 100644
--- a/doc/src/sgml/ref/notify.sgml
+++ b/doc/src/sgml/ref/notify.sgml
@@ -1,5 +1,5 @@
@@ -103,8 +103,8 @@ NOTIFY
Commonly, the notify condition name is the same as the name of some table in
- the database, and the notify event essentially means "I changed this table,
- take a look at it to see what's new". But no such association is enforced by
+ the database, and the notify event essentially means I changed this table,
+ take a look at it to see what's new. But no such association is enforced by
the NOTIFY and LISTEN commands. For
example, a database designer could use several different condition names
to signal different sorts of changes to a single table.
@@ -137,7 +137,7 @@ NOTIFY
after the transaction is completed (either committed or aborted). Again, the
reasoning is that if a notify were delivered within a transaction that was
later aborted, one would want the notification to be undone somehow---but
- the backend cannot "take back" a notify once it has sent it to the frontend.
+ the backend cannot take back a notify once it has sent it to the frontend.
So notify events are only delivered between transactions. The upshot of this
is that applications using NOTIFY for real-time signaling
should try to keep their transactions short.
diff --git a/doc/src/sgml/ref/pg_restore.sgml b/doc/src/sgml/ref/pg_restore.sgml
index cacb9f9ae86..e498d76048a 100644
--- a/doc/src/sgml/ref/pg_restore.sgml
+++ b/doc/src/sgml/ref/pg_restore.sgml
@@ -1,4 +1,4 @@
-
+
@@ -295,7 +295,7 @@
Restore elements in list-file only, and in the
- order they appear in the file. Lines can be moved and may also be commented out by placing a ';' at the
+ order they appear in the file. Lines can be moved and may also be commented out by placing a ; at the
start of the line.
diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml
index 1ffa995f24c..55c71a39b12 100644
--- a/doc/src/sgml/ref/psql-ref.sgml
+++ b/doc/src/sgml/ref/psql-ref.sgml
@@ -1,5 +1,5 @@
@@ -103,7 +103,7 @@ Postgres documentation
In normal operation, psql provides a prompt with
the name of the database to which psql is currently
- connected, followed by the string "=>". For example,
+ connected, followed by the string =>. For example,
$ psql testdb
Welcome to psql, the PostgreSQL interactive terminal.
@@ -1152,7 +1152,7 @@ lo_import 152801
-test=> \z
+test=> \z
Access permissions for database "test"
Relation | Access permissions
----------+-------------------------------------
diff --git a/doc/src/sgml/ref/select.sgml b/doc/src/sgml/ref/select.sgml
index f24dbc55f46..fbfeb23ebfb 100644
--- a/doc/src/sgml/ref/select.sgml
+++ b/doc/src/sgml/ref/select.sgml
@@ -1,5 +1,5 @@
@@ -268,7 +268,7 @@ where from_item can be:
specified expressions, keeping only the first row of each set of
duplicates. The DISTINCT ON expressions are interpreted using the
same rules as for ORDER BY items; see below.
- Note that "the first row" of each set is unpredictable
+ Note that the first row of each set is unpredictable
unless ORDER BY is used to ensure that the desired
row appears first. For example,
@@ -997,13 +997,13 @@ contains an explicit FROM clause.
SELECT Clause
- In the SQL92 standard, the optional keyword "AS"
+ In the SQL92 standard, the optional keyword AS>
is just noise and can be
omitted without affecting the meaning.
The Postgres parser requires this keyword when
renaming output columns because the type extensibility features lead to
parsing ambiguities
- in this context. "AS" is optional in FROM items, however.
+ in this context. AS is optional in FROM items, however.
The DISTINCT ON phrase is not part of SQL92.
diff --git a/doc/src/sgml/ref/unlisten.sgml b/doc/src/sgml/ref/unlisten.sgml
index dd7680404b7..6d23fc76b6f 100644
--- a/doc/src/sgml/ref/unlisten.sgml
+++ b/doc/src/sgml/ref/unlisten.sgml
@@ -1,5 +1,5 @@
@@ -95,7 +95,7 @@ UNLISTEN { notifyname | * }
UNLISTEN cancels any existing registration of the current
Postgres session as a listener on the notify
condition notifyname.
- The special condition wildcard "*" cancels all listener registrations
+ The special condition wildcard * cancels all listener registrations
for the current session.
diff --git a/doc/src/sgml/ref/update.sgml b/doc/src/sgml/ref/update.sgml
index f2a20433731..76490428852 100644
--- a/doc/src/sgml/ref/update.sgml
+++ b/doc/src/sgml/ref/update.sgml
@@ -1,5 +1,5 @@
@@ -152,7 +152,7 @@ UPDATE #
- Change word "Drama" with "Dramatic" on column kind:
+ Change word Drama> with Dramatic> on column kind>:
UPDATE films
diff --git a/doc/src/sgml/rules.sgml b/doc/src/sgml/rules.sgml
index 8bd452c95d3..95988448ada 100644
--- a/doc/src/sgml/rules.sgml
+++ b/doc/src/sgml/rules.sgml
@@ -1,4 +1,4 @@
-
+
The Postgres Rule System
@@ -30,7 +30,7 @@
- The query rewrite rule system (the "rule system" from now on)
+ The query rewrite rule system (the rule system> from now on)
is totally different from stored procedures and triggers.
It modifies queries to
take rules into consideration, and then passes the modified
@@ -495,7 +495,7 @@
It's the simplest SELECT Al can do on our views, so we take this
to explain the basics of view rules.
- The 'SELECT * FROM shoelace' was interpreted by the parser and
+ The SELECT * FROM shoelace was interpreted by the parser and
produced the parsetree
@@ -664,7 +664,7 @@
It turns out that the planner will collapse this tree into a two-level
- query tree: the bottommost selects will be "pulled up" into the middle
+ query tree: the bottommost selects will be pulled up into the middle
select since there's no need to process them separately. But the
middle select will remain separate from the top, because it contains
aggregate functions. If we pulled those up it would change the behavior
@@ -912,7 +912,7 @@
in mind.
- In the following, "update rules" means rules that are defined
+ In the following, update rules> means rules that are defined
ON INSERT, UPDATE or DELETE.
@@ -1111,7 +1111,7 @@
WHERE bpchareq(shoelace_data.sl_name, 'sl7');
- There is a rule 'log_shoelace' that is ON UPDATE with the rule
+ There is a rule log_shoelace that is ON UPDATE with the rule
qualification expression
@@ -1451,7 +1451,7 @@
FROM shoelace_arrive shoelace_arrive, shoelace_ok shoelace_ok;
- Now the first rule 'shoelace_ok_ins' is applied and turns it
+ Now the first rule shoelace_ok_ins is applied and turns it
into
@@ -1765,7 +1765,7 @@ Merge Join
hole, but in fact it isn't. If this would not work, the secretary
could setup a table with the same columns as phone_number and
copy the data to there once per day. Then it's his own data and
- he can grant access to everyone he wants. A GRANT means "I trust you".
+ he can grant access to everyone he wants. A GRANT means I trust you.
If someone you trust does the thing above, it's time to
think it over and then REVOKE.
diff --git a/doc/src/sgml/runtime.sgml b/doc/src/sgml/runtime.sgml
index e08a3770b36..aae6bf14deb 100644
--- a/doc/src/sgml/runtime.sgml
+++ b/doc/src/sgml/runtime.sgml
@@ -1,5 +1,5 @@
@@ -132,7 +132,7 @@ NOTICE: Initializing database with en_US collation order.
will cause indexes to be sorted in an order that prevents them from
being used for LIKE and regular-expression searches. If you need
good performance of such searches, you should set your current locale
- to "C" and re-run initdb. On most systems, setting the
+ to C> and re-run initdb. On most systems, setting the
current locale is done by changing the value of the environment variable
LC_ALL or LANG. The sort order used
within a particular database cluster is set by initdb
diff --git a/doc/src/sgml/spi.sgml b/doc/src/sgml/spi.sgml
index 5d1f56d9d98..925d4d66ee9 100644
--- a/doc/src/sgml/spi.sgml
+++ b/doc/src/sgml/spi.sgml
@@ -955,8 +955,8 @@ char *nulls
Array describing what parameters get NULLs
-'n' indicates NULL allowed
-' ' indicates NULL not allowed
+n indicates NULL allowed
+A space indicates NULL not allowed
diff --git a/doc/src/sgml/syntax.sgml b/doc/src/sgml/syntax.sgml
index ac73f17a67a..eb928ebdbc0 100644
--- a/doc/src/sgml/syntax.sgml
+++ b/doc/src/sgml/syntax.sgml
@@ -1,5 +1,5 @@
@@ -414,7 +414,7 @@ CAST ( 'string' AS type )
where delim is the delimiter character
for the type, as recorded in its pg_type
entry. (For all built-in types, this is the comma character
- ",".) Each val is either a constant
+ ,>.) Each val is either a constant
of the array element type, or a sub-array. An example of an
array constant is
@@ -461,7 +461,7 @@ CAST ( 'string' AS type )
- "$" (dollar) cannot be a single-character operator, although it
+ $> (dollar) cannot be a single-character operator, although it
can be part of a multiple-character operator name.
@@ -476,7 +476,7 @@ CAST ( 'string' AS type )
- A multiple-character operator name cannot end in "+" or "-",
+ A multiple-character operator name cannot end in +> or ->,
unless the name also contains at least one of these characters:
~ ! @ # % ^ & | ` ? $
@@ -493,7 +493,7 @@ CAST ( 'string' AS type )
When working with non-SQL-standard operator names, you will usually
need to separate adjacent operators with spaces to avoid ambiguity.
- For example, if you have defined a left-unary operator named "@",
+ For example, if you have defined a left-unary operator named @,
you cannot write X*@Y; you must write
X* @Y to ensure that
Postgres reads it as two operator names
@@ -1016,8 +1016,8 @@ sqrt(2)
The precedence and associativity of the operators is hard-wired
into the parser. Most operators have the same precedence and are
left-associative. This may lead to non-intuitive behavior; for
- example the Boolean operators "<" and ">" have a different
- precedence than the Boolean operators "<=" and ">=". Also,
+ example the Boolean operators <> and >> have a different
+ precedence than the Boolean operators <=> and >=>. Also,
you will sometimes need to add parentheses when using combinations
of binary and unary operators. For instance
diff --git a/doc/src/sgml/trigger.sgml b/doc/src/sgml/trigger.sgml
index bb88ccc4ded..1daca5b63e9 100644
--- a/doc/src/sgml/trigger.sgml
+++ b/doc/src/sgml/trigger.sgml
@@ -22,7 +22,7 @@
The trigger function must be created before the trigger is created as a
function taking no arguments and returning opaque. If the function is
- written in C, it must use the "version 1" function manager interface.
+ written in C, it must use the version 1> function manager interface.
@@ -115,7 +115,7 @@ CREATE TRIGGER trigger [ BEFORE | AFTER ] [ INSERT |
Also, procedure
may be used for triggering different relations (these
- functions are named as "general trigger functions").
+ functions are named as general trigger functions>).
@@ -123,7 +123,7 @@ CREATE TRIGGER trigger [ BEFORE | AFTER ] [ INSERT |
function that takes as its arguments two field names and puts the current
user in one and the current timestamp in the other. This allows triggers to
be written on INSERT events to automatically track creation of records in a
- transaction table for example. It could also be used as a "last updated"
+ transaction table for example. It could also be used as a last updated>
function if used in an UPDATE event.
@@ -197,7 +197,7 @@ CREATE TRIGGER trigger [ BEFORE | AFTER ] [ INSERT |
When a function is called by the trigger manager, it is not passed any
- normal parameters, but it is passed a "context" pointer pointing to a
+ normal parameters, but it is passed a context> pointer pointing to a
TriggerData structure. C functions can check whether they were called
from the trigger manager or not by executing the macro
CALLED_AS_TRIGGER(fcinfo), which expands to
diff --git a/doc/src/sgml/typeconv.sgml b/doc/src/sgml/typeconv.sgml
index affdefb24c0..6cebe25b8b5 100644
--- a/doc/src/sgml/typeconv.sgml
+++ b/doc/src/sgml/typeconv.sgml
@@ -178,7 +178,7 @@ Implicit conversions should never have surprising or unpredictable outcomes.
User-defined types, of which the parser has no a-priori knowledge, should be
-"higher" in the type hierarchy. In mixed-type expressions, native types shall always
+higher in the type hierarchy. In mixed-type expressions, native types shall always
be converted to a user-defined type (of course, only if conversion is necessary).
@@ -393,7 +393,7 @@ are specified in the query. So, the parser looks for all candidate operators
and finds that there are candidates accepting both string-category and
bit-string-category inputs. Since string category is preferred when available,
that category is selected, and then the
-"preferred type" for strings, text, is used as the specific
+preferred type for strings, text, is used as the specific
type to resolve the unknown literals to.
@@ -483,9 +483,9 @@ If only one candidate remains, use it; else continue to the next step.
-If any input arguments are "unknown", check the type categories accepted
+If any input arguments are unknown, check the type categories accepted
at those argument positions by the remaining candidates. At each position,
-select "string"
+select string
category if any candidate accepts that category (this bias towards string
is appropriate since an unknown-type literal does look like a string).
Otherwise, if all the remaining candidates accept the same type category,
@@ -592,7 +592,7 @@ tgl=> select substr(text(varchar '1234'), 3);
Actually, the parser is aware that text and varchar
-are "binary compatible", meaning that one can be passed to a function that
+are binary compatible>, meaning that one can be passed to a function that
accepts the other without doing any physical conversion. Therefore, no
explicit type conversion call is really inserted in this case.
@@ -746,7 +746,7 @@ tgl=> SELECT text 'a' AS "Text" UNION SELECT 'b';
b
(2 rows)
-Here, the unknown-type literal 'b' will be resolved as type text.
+Here, the unknown-type literal 'b' will be resolved as type text.
diff --git a/doc/src/sgml/xaggr.sgml b/doc/src/sgml/xaggr.sgml
index 6b92ed01c54..d3e6795eb83 100644
--- a/doc/src/sgml/xaggr.sgml
+++ b/doc/src/sgml/xaggr.sgml
@@ -1,5 +1,5 @@
@@ -36,8 +36,8 @@ $Header: /cvsroot/pgsql/doc/src/sgml/xaggr.sgml,v 1.13 2001/09/10 21:58:47 peter
If we define an aggregate that does not use a final function,
we have an aggregate that computes a running function of
- the column values from each row. "Sum" is an
- example of this kind of aggregate. "Sum" starts at
+ the column values from each row. Sum> is an
+ example of this kind of aggregate. Sum> starts at
zero and always adds the current row's value to
its running total. For example, if we want to make a Sum
aggregate to work on a data type for complex numbers,
@@ -61,30 +61,30 @@ SELECT complex_sum(a) FROM test_complex;
+------------+
- (In practice, we'd just name the aggregate "sum", and rely on
+ (In practice, we'd just name the aggregate sum, and rely on
Postgres to figure out which kind
of sum to apply to a complex column.)
- The above definition of "Sum" will return zero (the initial
+ The above definition of Sum will return zero (the initial
state condition) if there are no non-null input values.
Perhaps we want to return NULL in that case instead --- SQL92
- expects "Sum" to behave that way. We can do this simply by
+ expects Sum to behave that way. We can do this simply by
omitting the initcond phrase, so that the initial state
condition is NULL. Ordinarily this would mean that the sfunc
would need to check for a NULL state-condition input, but for
- "Sum" and some other simple aggregates like "Max" and "Min",
+ Sum and some other simple aggregates like Max> and Min>,
it's sufficient to insert the first non-null input value into
the state variable and then start applying the transition function
at the second non-null input value. Postgres
will do that automatically if the initial condition is NULL and
- the transition function is marked "strict" (i.e., not to be called
+ the transition function is marked strict> (i.e., not to be called
for NULL inputs).
- Another bit of default behavior for a "strict" transition function
+ Another bit of default behavior for a strict> transition function
is that the previous state value is retained unchanged whenever a
NULL input value is encountered. Thus, NULLs are ignored. If you
need some other behavior for NULL inputs, just define your transition
@@ -93,7 +93,7 @@ SELECT complex_sum(a) FROM test_complex;
- "Average" is a more complex example of an aggregate. It requires
+ Average> is a more complex example of an aggregate. It requires
two pieces of running state: the sum of the inputs and the count
of the number of inputs. The final result is obtained by dividing
these quantities. Average is typically implemented by using a
diff --git a/doc/src/sgml/xfunc.sgml b/doc/src/sgml/xfunc.sgml
index 4f79dc317a9..1bdc77adbcf 100644
--- a/doc/src/sgml/xfunc.sgml
+++ b/doc/src/sgml/xfunc.sgml
@@ -1,5 +1,5 @@
@@ -71,7 +71,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/xfunc.sgml,v 1.35 2001/09/10 21:58:47 peter
Arguments to the SQL function may be referenced in the queries using
a $n syntax: $1 refers to the first argument, $2 to the second, and so
on. If an argument is complex, then a dot
- notation (e.g. "$1.emp") may be
+ notation (e.g. $1.emp) may be
used to access attributes of the argument or
to invoke functions.
@@ -381,11 +381,11 @@ SELECT clean_EMP();
Two different calling conventions are currently used for C functions.
- The newer "version 1" calling convention is indicated by writing
+ The newer version 1 calling convention is indicated by writing
a PG_FUNCTION_INFO_V1() macro call for the function,
as illustrated below. Lack of such a macro indicates an old-style
- ("version 0") function. The language name specified in CREATE FUNCTION
- is 'C' in either case. Old-style functions are now deprecated
+ ("version 0") function. The language name specified in CREATE FUNCTION
+ is C in either case. Old-style functions are now deprecated
because of portability problems and lack of functionality, but they
are still supported for compatibility reasons.
@@ -496,7 +496,7 @@ SELECT clean_EMP();
The following table gives the C type required for parameters in the C
- functions that will be loaded into Postgres. The "Defined In"
+ functions that will be loaded into Postgres. The Defined In
column gives the actual header file (in the
.../src/backend/
directory) that the equivalent C type is defined. Note that you should
@@ -654,7 +654,7 @@ SELECT clean_EMP();
Internally, Postgres regards a
- base type as a "blob of memory." The user-defined
+ base type as a blob of memory. The user-defined
functions that you define over a type in turn define the
way that Postgres can operate
on it. That is, Postgres will
@@ -894,7 +894,7 @@ CREATE FUNCTION concat_text(text, text) RETURNS text
- Notice that we have specified the functions as "strict", meaning that
+ Notice that we have specified the functions as strict, meaning that
the system should automatically assume a NULL result if any input
value is NULL. By doing this, we avoid having to check for NULL inputs
in the function code. Without this, we'd have to check for NULLs
@@ -929,7 +929,7 @@ PG_FUNCTION_INFO_V1(funcname);
must appear in the same source file (conventionally it's written
just before the function itself). This macro call is not needed
- for "internal"-language functions, since Postgres currently assumes
+ for internal>-language functions, since Postgres currently assumes
all internal functions are version-1. However, it is
required for dynamically-loaded functions.
@@ -1045,7 +1045,7 @@ concat_text(PG_FUNCTION_ARGS)
An example is that in coding add_one_float8, we no longer need to
be aware that float8 is a pass-by-reference type. Another
example is that the GETARG macros for variable-length types hide
- the need to deal with fetching "toasted" (compressed or
+ the need to deal with fetching toasted (compressed or
out-of-line) values. The old-style copytext
and concat_text functions shown above are
actually wrong in the presence of toasted values, because they
diff --git a/doc/src/sgml/xindex.sgml b/doc/src/sgml/xindex.sgml
index 29568422a90..155c6d5fc0f 100644
--- a/doc/src/sgml/xindex.sgml
+++ b/doc/src/sgml/xindex.sgml
@@ -1,5 +1,5 @@
@@ -123,7 +123,7 @@ SELECT oid FROM pg_am WHERE amname = 'btree';
impose a strict ordering on keys, lesser to greater. Since
Postgres allows the user to define operators,
Postgres cannot look at the name of an operator
- (e.g., ">" or "<") and tell what kind of comparison it is. In fact,
+ (e.g., >> or <>) and tell what kind of comparison it is. In fact,
some access methods don't impose any ordering at all. For example,
R-trees express a rectangle-containment relationship,
whereas a hashed data structure expresses only bitwise similarity based
@@ -131,7 +131,7 @@ SELECT oid FROM pg_am WHERE amname = 'btree';
needs some consistent way of taking a qualification in your query,
looking at the operator and then deciding if a usable index exists. This
implies that Postgres needs to know, for
- example, that the "<=" and ">" operators partition a
+ example, that the <=> and >> operators partition a
B-tree. Postgres
uses strategies to express these relationships between
operators and the way they can be used to scan indexes.
@@ -240,7 +240,7 @@ SELECT oid FROM pg_am WHERE amname = 'btree';
does, amorderstrategy is the number of the strategy
routine that corresponds to the ordering operator. For example, B-tree
has amorderstrategy = 1 which is its
- "less than" strategy number.
+ less than strategy number.
@@ -388,7 +388,7 @@ CREATE FUNCTION complex_abs_eq(complex, complex)
The final routine in the
- file is the "support routine" mentioned when we discussed the amsupport
+ file is the support routine mentioned when we discussed the amsupport
column of the pg_am table. We will use this
later on. For now, ignore it.
@@ -463,10 +463,11 @@ CREATE OPERATOR = (
c.oprname = '<';
- Now do this for the other operators substituting for the "1" in the
- second line above and the "<" in the last line. Note the order:
- "less than" is 1, "less than or equal" is 2, "equal" is 3, "greater
- than or equal" is 4, and "greater than" is 5.
+ Now do this for the other operators substituting for the 1> in the
+ second line above and the <> in the last line. Note the order:
+ less than> is 1, less than or equal> is 2,
+ equal> is 3, greater than or equal is 4, and
+ greater than is 5.
@@ -475,7 +476,7 @@ CREATE OPERATOR = (
- The final step is registration of the "support routine" previously
+ The final step is registration of the support routine previously
described in our discussion of pg_am. The
oid of this support routine is stored in the
pg_amproc table, keyed by the operator class
diff --git a/doc/src/sgml/xoper.sgml b/doc/src/sgml/xoper.sgml
index baf36e27a18..f4ea5c6e471 100644
--- a/doc/src/sgml/xoper.sgml
+++ b/doc/src/sgml/xoper.sgml
@@ -1,5 +1,5 @@
@@ -19,7 +19,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/xoper.sgml,v 1.13 2001/09/10 21:58:47 peter
- Every operator is "syntactic sugar" for a call to an
+ Every operator is syntactic sugar for a call to an
underlying function that does the real work; so you must
first create the underlying function before you can create
the operator. However, an operator is not
@@ -113,9 +113,9 @@ SELECT (a + b) AS c FROM test_complex;
commutator of the operator being defined. We say that operator A is the
commutator of operator B if (x A y) equals (y B x) for all possible input
values x,y. Notice that B is also the commutator of A. For example,
- operators '<' and '>' for a particular data type are usually each others'
- commutators, and operator '+' is usually commutative with itself.
- But operator '-' is usually not commutative with anything.
+ operators <> and >> for a particular data type are usually each others'
+ commutators, and operator +> is usually commutative with itself.
+ But operator -> is usually not commutative with anything.
@@ -176,7 +176,7 @@ SELECT (a + b) AS c FROM test_complex;
is the negator of operator B if both return boolean results and
(x A y) equals NOT (x B y) for all possible inputs x,y.
Notice that B is also the negator of A.
- For example, '<' and '>=' are a negator pair for most data types.
+ For example, <> and >=> are a negator pair for most data types.
An operator can never be validly be its own negator.
@@ -239,16 +239,16 @@ SELECT (a + b) AS c FROM test_complex;
scalargtsel for > or >=
It might seem a little odd that these are the categories, but they
- make sense if you think about it. '=' will typically accept only
- a small fraction of the rows in a table; '<>' will typically reject
- only a small fraction. '<' will accept a fraction that depends on
+ make sense if you think about it. => will typically accept only
+ a small fraction of the rows in a table; <>> will typically reject
+ only a small fraction. <> will accept a fraction that depends on
where the given constant falls in the range of values for that table
column (which, it just so happens, is information collected by
ANALYZE and made available to the selectivity estimator).
- '<=' will accept a slightly larger fraction than '<' for the same
+ <=> will accept a slightly larger fraction than <> for the same
comparison constant, but they're close enough to not be worth
distinguishing, especially since we're not likely to do better than a
- rough guess anyhow. Similar remarks apply to '>' and '>='.
+ rough guess anyhow. Similar remarks apply to >> and >=>.
@@ -339,7 +339,7 @@ SELECT (a + b) AS c FROM test_complex;
time intervals is not bitwise equality; the interval equality operator
considers two time intervals equal if they have the same
duration, whether or not their endpoints are identical. What this means
- is that a join using "=" between interval fields would yield different
+ is that a join using = between interval fields would yield different
results if implemented as a hash join than if implemented another way,
because a large fraction of the pairs that should match will hash to
different values and will never be compared by the hash join. But
@@ -386,7 +386,7 @@ SELECT (a + b) AS c FROM test_complex;
Merge join is based on the idea of sorting the left and righthand tables
into order and then scanning them in parallel. So, both data types must
be capable of being fully ordered, and the join operator must be one
- that can only succeed for pairs of values that fall at the "same place"
+ that can only succeed for pairs of values that fall at the same place>
in the sort order. In practice this means that the join operator must
behave like equality. But unlike hashjoin, where the left and right
data types had better be the same (or at least bitwise equivalent),
@@ -410,8 +410,8 @@ SELECT (a + b) AS c FROM test_complex;
- In practice you should only write SORT clauses for an '=' operator,
- and the two referenced operators should always be named '<'. Trying
+ In practice you should only write SORT clauses for an => operator,
+ and the two referenced operators should always be named <>. Trying
to use merge join with operators named anything else will result in
hopeless confusion, for reasons we'll see in a moment.
@@ -433,9 +433,9 @@ SELECT (a + b) AS c FROM test_complex;
- There must be '<' and '>' ordering operators having the same left and
+ There must be <> and >> ordering operators having the same left and
right input data types as the mergejoinable operator itself. These
- operators must be named '<' and '>'; you do
+ operators must be named <> and >>; you do
not have any choice in the matter, since there is no provision for
specifying them explicitly. Note that if the left and right data types
are different, neither of these operators is the same as either
diff --git a/doc/src/sgml/y2k.sgml b/doc/src/sgml/y2k.sgml
index 330d67abbe5..e7a74de772f 100644
--- a/doc/src/sgml/y2k.sgml
+++ b/doc/src/sgml/y2k.sgml
@@ -1,5 +1,5 @@
@@ -51,15 +51,15 @@ $Header: /cvsroot/pgsql/doc/src/sgml/Attic/y2k.sgml,v 1.10 2001/03/24 23:03:26 p
are documented in the current User's Guide
in the chapter on data types.
For two-digit years, the significant transition year is 1970, not 2000;
- e.g. "70-01-01" is interpreted as 1970-01-01,
- whereas "69-01-01" is interpreted as 2069-01-01.
+ e.g. 70-01-01 is interpreted as 1970-01-01,
+ whereas 69-01-01 is interpreted as 2069-01-01.
- Any Y2K problems in the underlying OS related to obtaining "the
- current time" may propagate into apparent Y2K problems in
+ Any Y2K problems in the underlying OS related to obtaining the
+ current time may propagate into apparent Y2K problems in
Postgres.