Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitb78769f

Browse files
committed
Fix it's and its to be correct.
1 parentc0cab6f commitb78769f

File tree

24 files changed

+54
-54
lines changed

24 files changed

+54
-54
lines changed

‎src/backend/access/transam/xact.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.56 1999/12/10 03:55:46 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.57 2000/01/05 18:23:44 momjian Exp $
1111
*
1212
* NOTES
1313
*Transaction aborts can now occur two ways:
@@ -36,7 +36,7 @@
3636
*they always have been, and user aborts are now handled by
3737
*UserAbortTransactionBlock(). Both of them rely on AbortTransaction()
3838
*to do all the real work. The only difference is what state we
39-
*enter after AbortTransaction() doesit's work:
39+
*enter after AbortTransaction() doesits work:
4040
*
4141
** AbortTransactionBlock() leaves us in TBLOCK_ABORT and
4242
** UserAbortTransactionBlock() leaves us in TBLOCK_ENDABORT

‎src/backend/catalog/pg_operator.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_operator.c,v 1.45 1999/12/16 22:19:39 wieck Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_operator.c,v 1.46 2000/01/05 18:23:45 momjian Exp $
1111
*
1212
* NOTES
1313
* these routines moved here from commands/define.c and somewhat cleaned up.
@@ -406,7 +406,7 @@ OperatorShellMake(char *operatorName,
406406
* resultType -- defer this, since it must be determined from
407407
* the pg_procedure catalog
408408
* commutatorObjectId -- if this is NULL, enter ObjectId=0
409-
* else if this already exists, enterit's ObjectId
409+
* else if this already exists, enterits ObjectId
410410
* else if this does not yet exist, and is not
411411
*the same as the main operatorName, then create
412412
*a shell and enter the new ObjectId

‎src/backend/commands/trigger.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1719,7 +1719,7 @@ DeferredTriggerSaveEvent(Relation rel, int event,
17191719

17201720
/* ----------
17211721
* Look at the previous event to the same tuple if
1722-
* any ofit's triggers has already been executed.
1722+
* any ofits triggers has already been executed.
17231723
* Such a situation would potentially violate RI
17241724
* so we abort the transaction.
17251725
* ----------
@@ -1795,7 +1795,7 @@ DeferredTriggerSaveEvent(Relation rel, int event,
17951795

17961796
/* ----------
17971797
* Look at the previous event to the same tuple if
1798-
* any ofit's triggers has already been executed.
1798+
* any ofits triggers has already been executed.
17991799
* Such a situation would potentially violate RI
18001800
* so we abort the transaction.
18011801
* ----------

‎src/backend/executor/execMain.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
*
2828
* IDENTIFICATION
29-
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.103 1999/12/16 22:19:44 wieck Exp $
29+
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.104 2000/01/05 18:23:46 momjian Exp $
3030
*
3131
*-------------------------------------------------------------------------
3232
*/
@@ -1007,7 +1007,7 @@ lnext:;
10071007
/*
10081008
* now that we have a tuple, do the appropriate thing with it..
10091009
* either return it to the user, add it to a relation someplace,
1010-
* delete it from a relation, or modify some ofit's attributes.
1010+
* delete it from a relation, or modify some ofits attributes.
10111011
*/
10121012

10131013
switch (operation)

‎src/backend/executor/execProcnode.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@
44
* contains dispatch functions which call the appropriate "initialize",
55
* "get a tuple", and "cleanup" routines for the given node type.
66
* If the node has children, then it will presumably call ExecInitNode,
7-
* ExecProcNode, or ExecEndNode onit's subnodes and do the appropriate
7+
* ExecProcNode, or ExecEndNode onits subnodes and do the appropriate
88
* processing..
99
*
1010
* Copyright (c) 1994, Regents of the University of California
1111
*
1212
*
1313
* IDENTIFICATION
14-
* $Header: /cvsroot/pgsql/src/backend/executor/execProcnode.c,v 1.16 1999/11/23 20:06:51 momjian Exp $
14+
* $Header: /cvsroot/pgsql/src/backend/executor/execProcnode.c,v 1.17 2000/01/05 18:23:46 momjian Exp $
1515
*
1616
*-------------------------------------------------------------------------
1717
*/
1818
/*
1919
* INTERFACE ROUTINES
20-
*ExecInitNode-initialize a plan node andit's subplans
20+
*ExecInitNode-initialize a plan node andits subplans
2121
*ExecProcNode-get a tuple by executing the plan node
22-
*ExecEndNode-shut down a plan node andit's subplans
22+
*ExecEndNode-shut down a plan node andits subplans
2323
*
2424
* NOTES
2525
*This used to be three files. It is now all combined into

‎src/backend/executor/nodeMaterial.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/executor/nodeMaterial.c,v 1.27 1999/12/10 03:55:51 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/executor/nodeMaterial.c,v 1.28 2000/01/05 18:23:46 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -252,7 +252,7 @@ ExecInitMaterial(Material *node, EState *estate, Plan *parent)
252252
tupType=ExecGetScanType(&matstate->csstate);
253253

254254
/* ----------------
255-
*ExecCreatR wantsit's second argument to be an object id of
255+
*ExecCreatR wantsits second argument to be an object id of
256256
*a relation in the range table or a _NONAME_RELATION_ID
257257
*indicating that the relation is not in the range table.
258258
*

‎src/backend/libpq/be-pqexec.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/libpq/Attic/be-pqexec.c,v 1.24 1999/07/17 20:17:01 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/libpq/Attic/be-pqexec.c,v 1.25 2000/01/05 18:23:47 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -290,7 +290,7 @@ strparse(char *s, char **fields, int *offsets, int maxfields)
290290
}
291291

292292
/* ----------------
293-
*pqtest_PQfn convertsit's string into a PQArgBlock and
293+
*pqtest_PQfn convertsits string into a PQArgBlock and
294294
*calls the specified function, which is assumed to return
295295
*an integer value.
296296
* ----------------
@@ -376,7 +376,7 @@ pqtest_PQfn(char *q)
376376
}
377377

378378
/* ----------------
379-
*pqtest looks at the first character ofit's test argument
379+
*pqtest looks at the first character ofits test argument
380380
*and decides which of pqtest_PQexec or pqtest_PQfn to call.
381381
* ----------------
382382
*/

‎src/backend/main/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/main/main.c,v 1.27 1999/07/17 20:17:04 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/main/main.c,v 1.28 2000/01/05 18:23:48 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -31,7 +31,7 @@
3131

3232
#defineNOROOTEXEC "\
3333
\n\"root\" execution of the PostgreSQL backend is not permitted.\n\n\
34-
The backend must be started underit's own userid to prevent\n\
34+
The backend must be started underits own userid to prevent\n\
3535
a possible system security compromise. See the INSTALL file for\n\
3636
more information on how to properly start the postmaster.\n\n"
3737

‎src/backend/rewrite/rewriteHandler.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
*
88
* IDENTIFICATION
9-
* $Header: /cvsroot/pgsql/src/backend/rewrite/rewriteHandler.c,v 1.63 1999/11/15 02:00:03 tgl Exp $
9+
* $Header: /cvsroot/pgsql/src/backend/rewrite/rewriteHandler.c,v 1.64 2000/01/05 18:23:48 momjian Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -1271,7 +1271,7 @@ fireRules(Query *parsetree,
12711271
* If there are instead rules with qualifications,
12721272
* the original query is still performed. But all
12731273
* the negated rule qualifications of the instead
1274-
* rules are added so it doesit's actions only
1274+
* rules are added so it doesits actions only
12751275
* in cases where the rule quals of all instead
12761276
* rules are false. Think of it as the default
12771277
* action in a case. We save this in *qual_products

‎src/backend/storage/buffer/bufmgr.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/storage/buffer/bufmgr.c,v 1.68 1999/11/22 02:03:21 tgl Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/storage/buffer/bufmgr.c,v 1.69 2000/01/05 18:23:49 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -242,7 +242,7 @@ ReadBufferWithBufferLock(Relation reln,
242242
if (!bufHdr)
243243
returnInvalidBuffer;
244244

245-
/* ifits already in the buffer pool, we're done */
245+
/* ifit's already in the buffer pool, we're done */
246246
if (found)
247247
{
248248

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp