diff --git a/doc/src/sgml/datatype.sgml b/doc/src/sgml/datatype.sgml index 2ffe074586..507b4b6142 100644 --- a/doc/src/sgml/datatype.sgml +++ b/doc/src/sgml/datatype.sgml @@ -1,4 +1,4 @@ - + Data Types @@ -3376,7 +3376,7 @@ SET xmloption TO { DOCUMENT | CONTENT }; When using the binary mode to pass query parameters to the server - and query results back the the client, no character set conversion + and query results back to the client, no character set conversion is performed, so the situation is different. In this case, an encoding declaration in the XML data will be observed, and if it is absent, the data will be assumed to be in UTF-8 (as required by diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml index 7f77eae425..b11b176fe3 100644 --- a/doc/src/sgml/ddl.sgml +++ b/doc/src/sgml/ddl.sgml @@ -1,4 +1,4 @@ - + Data Definition @@ -2233,7 +2233,7 @@ VALUES ('New York', NULL, NULL, 'NY'); - When queries or updates access a large percentage of a a single + When queries or updates access a large percentage of a single partition, performance can be improved by taking advantage of sequential scan of that partition instead of using an index and random access reads scattered across the whole table. @@ -2556,7 +2556,7 @@ DO INSTEAD Note that the WHERE clause in each rule - exactly matches the the CHECK + exactly matches the CHECK constraint for its partition. diff --git a/doc/src/sgml/plperl.sgml b/doc/src/sgml/plperl.sgml index 8ba9362e4c..1be0ae5b8e 100644 --- a/doc/src/sgml/plperl.sgml +++ b/doc/src/sgml/plperl.sgml @@ -1,4 +1,4 @@ - + PL/Perl - Perl Procedural Language @@ -20,7 +20,7 @@ The usual advantage to using PL/Perl is that this allows use, within stored functions, of the manyfold string munging operators and functions available for Perl. Parsing - complex strings might be be easier using Perl than it is with the + complex strings might be easier using Perl than it is with the string functions and control structures provided in PL/pgSQL. @@ -619,7 +619,7 @@ CREATE FUNCTION badfunc() RETURNS integer AS $$ $$ LANGUAGE plperl; The creation of this function will fail as its use of a forbidden - operation will be be caught by the validator. + operation will be caught by the validator. diff --git a/doc/src/sgml/spi.sgml b/doc/src/sgml/spi.sgml index 7ee47162cd..aaec698bcf 100644 --- a/doc/src/sgml/spi.sgml +++ b/doc/src/sgml/spi.sgml @@ -1,4 +1,4 @@ - + Server Programming Interface @@ -2233,7 +2233,7 @@ char * SPI_getvalue(HeapTuple row, TupleDesc r Column value, or NULL if the column is null, colnumber is out of range (SPI_result is set to - SPI_ERROR_NOATTRIBUTE), or no no output function + SPI_ERROR_NOATTRIBUTE), or no output function is available (SPI_result is set to SPI_ERROR_NOOUTFUNC).