1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-22 12:22:45 +03:00

Fix it's and its to be correct.

This commit is contained in:
Bruce Momjian
2000-01-05 18:23:54 +00:00
parent c0cab6f4fa
commit b78769fda2
24 changed files with 54 additions and 54 deletions

View File

@@ -783,7 +783,7 @@ QueryInfo qi;
self->status = STMT_EXECUTING;
// If its a SELECT statement, use a cursor.
// If it's a SELECT statement, use a cursor.
// Note that the declare cursor has already been prepended to the statement
// in copy_statement...
if (self->statement_type == STMT_TYPE_SELECT) {
@@ -822,7 +822,7 @@ QueryInfo qi;
}
else { // not a SELECT statement so don't use a cursor
mylog(" its NOT a select statement: stmt=%u\n", self);
mylog(" it's NOT a select statement: stmt=%u\n", self);
self->result = CC_send_query(conn, self->stmt_with_params, NULL);
// If we are in autocommit, we must send the commit.