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
33980a06
Commit
33980a06
authored
Apr 23, 2010
by
Robert Haas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix various instances of "the the".
Two of these were pointed out by Erik Rijkers; the rest I found.
parent
473af397
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
19 additions
and
19 deletions
+19
-19
contrib/cube/CHANGES
contrib/cube/CHANGES
+1
-1
doc/src/sgml/pgbench.sgml
doc/src/sgml/pgbench.sgml
+2
-2
doc/src/sgml/pgfreespacemap.sgml
doc/src/sgml/pgfreespacemap.sgml
+2
-2
doc/src/sgml/ref/copy.sgml
doc/src/sgml/ref/copy.sgml
+2
-2
src/backend/access/heap/README.HOT
src/backend/access/heap/README.HOT
+2
-2
src/backend/access/heap/visibilitymap.c
src/backend/access/heap/visibilitymap.c
+3
-3
src/backend/storage/ipc/standby.c
src/backend/storage/ipc/standby.c
+2
-2
src/bin/pg_dump/pg_backup_archiver.c
src/bin/pg_dump/pg_backup_archiver.c
+2
-2
src/include/port.h
src/include/port.h
+2
-2
src/tools/backend/backend_dirs.html
src/tools/backend/backend_dirs.html
+1
-1
No files found.
contrib/cube/CHANGES
View file @
33980a06
...
...
@@ -89,7 +89,7 @@ cube_enlarge
cube takes text input and returns a cube. This is useful for making cubes
from computed strings.
cube_dim returns the number of dimensions stored in the
the
data structure
cube_dim returns the number of dimensions stored in the data structure
for a cube. This is useful for constraints on the dimensions of a cube.
cube_ll_coord returns the nth coordinate value for the lower left corner
...
...
doc/src/sgml/pgbench.sgml
View file @
33980a06
<!-- $PostgreSQL: pgsql/doc/src/sgml/pgbench.sgml,v 1.1
4 2010/03/23 04:09:17 itagaki
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/pgbench.sgml,v 1.1
5 2010/04/23 23:21:43 rhaas
Exp $ -->
<sect1 id="pgbench">
<title>pgbench</title>
...
...
@@ -553,7 +553,7 @@ END;
<replaceable>nnn</> is the PID of the pgbench process.
If the <literal>-j</> option is 2 or higher, creating multiple worker
threads, each will have its own log file. The first worker will use the
the
same name for its log file as in the standard single worker case.
same name for its log file as in the standard single worker case.
The additional log files for the other workers will be named
<filename>pgbench_log.<replaceable>nnn</>.<replaceable>mmm</></filename>,
where <replaceable>mmm</> is a sequential number for each worker starting
...
...
doc/src/sgml/pgfreespacemap.sgml
View file @
33980a06
<!-- $PostgreSQL: pgsql/doc/src/sgml/pgfreespacemap.sgml,v 2.
5 2008/10/02 12:20:50 heikki
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/pgfreespacemap.sgml,v 2.
6 2010/04/23 23:21:43 rhaas
Exp $ -->
<sect1 id="pgfreespacemap">
<title>pg_freespacemap</title>
...
...
@@ -46,7 +46,7 @@
<listitem>
<para>
Displays the
the
amount of free space on each page of the relation,
Displays the amount of free space on each page of the relation,
according to the FSM. A set of <literal>(blkno bigint, avail int2)</>
tuples is returned, one tuple for each page in the relation.
</para>
...
...
doc/src/sgml/ref/copy.sgml
View file @
33980a06
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/copy.sgml,v 1.9
6 2010/04/03 07:22:58 petere
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/copy.sgml,v 1.9
7 2010/04/23 23:21:43 rhaas
Exp $
PostgreSQL documentation
-->
...
...
@@ -368,7 +368,7 @@ COPY <replaceable class="parameter">count</replaceable>
<para>
Input data is interpreted according to the current client encoding,
and output data is encoded in the
the
current client encoding, even
and output data is encoded in the current client encoding, even
if the data does not pass through the client but is read from or
written to a file directly by the server.
</para>
...
...
src/backend/access/heap/README.HOT
View file @
33980a06
$PostgreSQL: pgsql/src/backend/access/heap/README.HOT,v 1.
5 2010/02/08 04:33:52 tgl
Exp $
$PostgreSQL: pgsql/src/backend/access/heap/README.HOT,v 1.
6 2010/04/23 23:21:44 rhaas
Exp $
Heap Only Tuples (HOT)
======================
...
...
@@ -281,7 +281,7 @@ a "broken" chain that can't be indexed properly.
To address this issue, regular (non-concurrent) CREATE INDEX makes the
new index usable only by new transactions and transactions that don't
have snapshots older than the
the
CREATE INDEX command. This prevents
have snapshots older than the CREATE INDEX command. This prevents
queries that can see the inconsistent HOT chains from trying to use the
new index and getting incorrect results. Queries that can see the index
can only see the rows that were visible after the index was created,
...
...
src/backend/access/heap/visibilitymap.c
View file @
33980a06
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/access/heap/visibilitymap.c,v 1.
9 2010/02/26 02:00:33 momjian
Exp $
* $PostgreSQL: pgsql/src/backend/access/heap/visibilitymap.c,v 1.
10 2010/04/23 23:21:44 rhaas
Exp $
*
* INTERFACE ROUTINES
* visibilitymap_clear - clear a bit in the visibility map
...
...
@@ -173,7 +173,7 @@ visibilitymap_clear(Relation rel, BlockNumber heapBlk)
* On entry, *buf should be InvalidBuffer or a valid buffer returned by
* an earlier call to visibilitymap_pin or visibilitymap_test on the same
* relation. On return, *buf is a valid buffer with the map page containing
* the
the
bit for heapBlk.
* the bit for heapBlk.
*
* If the page doesn't exist in the map file yet, it is extended.
*/
...
...
@@ -247,7 +247,7 @@ visibilitymap_set(Relation rel, BlockNumber heapBlk, XLogRecPtr recptr,
* On entry, *buf should be InvalidBuffer or a valid buffer returned by an
* earlier call to visibilitymap_pin or visibilitymap_test on the same
* relation. On return, *buf is a valid buffer with the map page containing
* the
the
bit for heapBlk, or InvalidBuffer. The caller is responsible for
* the bit for heapBlk, or InvalidBuffer. The caller is responsible for
* releasing *buf after it's done testing and setting bits.
*/
bool
...
...
src/backend/storage/ipc/standby.c
View file @
33980a06
...
...
@@ -11,7 +11,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/storage/ipc/standby.c,v 1.1
8 2010/04/22 08:04:25 srigg
s Exp $
* $PostgreSQL: pgsql/src/backend/storage/ipc/standby.c,v 1.1
9 2010/04/23 23:21:44 rhaa
s Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -382,7 +382,7 @@ ResolveRecoveryConflictWithLock(Oid dbOid, Oid relOid)
* be cleared if the Startup process replays a transaction completion record.
* If Startup process is also waiting then that is a deadlock. The deadlock
* can occur if the query is waiting and then the Startup sleeps, or if
* Startup is sleeping and the
the
query waits on a lock. We protect against
* Startup is sleeping and the query waits on a lock. We protect against
* only the former sequence here, the latter sequence is checked prior to
* the query sleeping, in CheckRecoveryConflictDeadlock().
*/
...
...
src/bin/pg_dump/pg_backup_archiver.c
View file @
33980a06
...
...
@@ -15,7 +15,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.18
3 2010/03/18 20:00:51 petere
Exp $
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.18
4 2010/04/23 23:21:44 rhaas
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -2545,7 +2545,7 @@ _becomeUser(ArchiveHandle *AH, const char *user)
}
/*
* Become the owner of the
the
given TOC entry object. If
* Become the owner of the given TOC entry object. If
* changes in ownership are not allowed, this doesn't do anything.
*/
static
void
...
...
src/include/port.h
View file @
33980a06
...
...
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/port.h,v 1.13
1 2010/02/26 02:01:20 momjian
Exp $
* $PostgreSQL: pgsql/src/include/port.h,v 1.13
2 2010/04/23 23:21:44 rhaas
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -126,7 +126,7 @@ extern BOOL AddUserToTokenDacl(HANDLE hToken);
* - exactly two quote characters
* - no special characters between the two quote characters, where special
* is one of: &<>()@^|
* - there are one or more whitespace characters between the t
he t
wo quote
* - there are one or more whitespace characters between the two quote
* characters
* - the string between the two quote characters is the name of an
* executable file.
...
...
src/tools/backend/backend_dirs.html
View file @
33980a06
...
...
@@ -63,7 +63,7 @@ href="../../backend/parser">parser</a> - converts SQL query to
query tree
</h2>
<p>
This converts SQL queries coming from
<i>
libpq
</i>
into
command-specific structures to be used the
the
optimizer/executor,
command-specific structures to be used the optimizer/executor,
or
<i>
/commands
</i>
routines. The SQL is lexically analyzed into
keywords, identifiers, and constants, and passed to the parser. The
parser creates command-specific structures to hold the elements of
...
...
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