diff options
| author | Bruce Momjian | 2000-01-05 18:23:54 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2000-01-05 18:23:54 +0000 |
| commit | b78769fda2dc51052d2d0349f4b284c7431dcd01 (patch) | |
| tree | fc0e9cef831aa1906d9754390cbc2b6c85c93cc3 /src/pl | |
| parent | c0cab6f4fa7642425728c710bb3215f94c239ddb (diff) | |
Fix it's and its to be correct.
Diffstat (limited to 'src/pl')
| -rw-r--r-- | src/pl/plpgsql/src/pl_exec.c | 10 | ||||
| -rw-r--r-- | src/pl/tcl/pltcl.c | 6 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/pl/plpgsql/src/pl_exec.c b/src/pl/plpgsql/src/pl_exec.c index 2c37943eb48..5c7405a1e40 100644 --- a/src/pl/plpgsql/src/pl_exec.c +++ b/src/pl/plpgsql/src/pl_exec.c @@ -3,7 +3,7 @@ * procedural language * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.15 1999/11/22 17:56:40 momjian Exp $ + * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.16 2000/01/05 18:23:53 momjian Exp $ * * This software is copyrighted by Jan Wieck - Hamburg. * @@ -1911,7 +1911,7 @@ exec_assign_value(PLpgSQL_execstate * estate, * ---------- */ if (!HeapTupleIsValid(rec->tup)) - elog(ERROR, "record %s is unassigned yet - don't know it's tuple structure", rec->refname); + elog(ERROR, "record %s is unassigned yet - don't know its tuple structure", rec->refname); /* ---------- * Get the number of the records field to change and the @@ -1952,7 +1952,7 @@ exec_assign_value(PLpgSQL_execstate * estate, } /* ---------- - * This is the field to change. Get it's type + * This is the field to change. Get its type * and cast the value we insert to that type. * ---------- */ @@ -2045,7 +2045,7 @@ exec_eval_expr(PLpgSQL_execstate * estate, elog(ERROR, "query \"%s\" didn't return a single value", expr->query); /* ---------- - * Return the result and it's type + * Return the result and its type * ---------- */ *rettype = SPI_gettypeid(SPI_tuptable->tupdesc, 1); @@ -2299,7 +2299,7 @@ exec_move_row(PLpgSQL_execstate * estate, bool isnull; /* ---------- - * Record is simple - just put the tuple and it's descriptor + * Record is simple - just put the tuple and its descriptor * into the record * ---------- */ diff --git a/src/pl/tcl/pltcl.c b/src/pl/tcl/pltcl.c index ea9a956e548..8db608b0da1 100644 --- a/src/pl/tcl/pltcl.c +++ b/src/pl/tcl/pltcl.c @@ -3,7 +3,7 @@ * procedural language (PL) * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/pl/tcl/pltcl.c,v 1.15 1999/11/22 17:56:41 momjian Exp $ + * $Header: /cvsroot/pgsql/src/pl/tcl/pltcl.c,v 1.16 2000/01/05 18:23:54 momjian Exp $ * * This software is copyrighted by Jan Wieck - Hamburg. * @@ -695,7 +695,7 @@ pltcl_func_handler(FmgrInfo *proinfo, /************************************************************ * Convert the result value from the safe interpreter - * into it's PostgreSQL data format and return it. + * into its PostgreSQL data format and return it. * Again, the call to fmgr() could fire an elog and we * have to count for the current interpreter level we are * on. The save_restart from above is still good. @@ -1792,7 +1792,7 @@ pltcl_SPI_execp(ClientData cdata, Tcl_Interp *interp, } /************************************************************ - * Get the prepared plan descriptor by it's key + * Get the prepared plan descriptor by its key ************************************************************/ hashent = Tcl_FindHashEntry(pltcl_query_hash, argv[i++]); if (hashent == NULL) |
