Skip to content

Commit b78769f

Browse files
committed
Fix it's and its to be correct.
1 parent c0cab6f commit b78769f

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() does it's work:
39+
* enter after AbortTransaction() does its 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, enter it's ObjectId
409+
* else if this already exists, enter its 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 of it's triggers has already been executed.
1722+
* any of its 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 of it's triggers has already been executed.
1798+
* any of its 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 of it's attributes.
1010+
* delete it from a relation, or modify some of its 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 on it's subnodes and do the appropriate
7+
* ExecProcNode, or ExecEndNode on its 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 and it's subplans
20+
* ExecInitNode - initialize a plan node and its subplans
2121
* ExecProcNode - get a tuple by executing the plan node
22-
* ExecEndNode - shut down a plan node and it's subplans
22+
* ExecEndNode - shut down a plan node and its 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 wants it's second argument to be an object id of
255+
* ExecCreatR wants its 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 converts it's string into a PQArgBlock and
293+
* pqtest_PQfn converts its 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 of it's test argument
379+
* pqtest looks at the first character of its 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
#define NOROOTEXEC "\
3333
\n\"root\" execution of the PostgreSQL backend is not permitted.\n\n\
34-
The backend must be started under it's own userid to prevent\n\
34+
The backend must be started under its 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 does it's actions only
1274+
* rules are added so it does its 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
return InvalidBuffer;
244244

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

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy