*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.472 2005/12/30 22:55:20 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.473 2005/12/30 23:49:48 momjian Exp $
*
* NOTES
* this is the "main" module of the postgres backend and
char stack_base;
StringInfoData input_message;
sigjmp_buf local_sigjmp_buf;
- volatile bool send_rfq = true;
+ volatile bool send_ready_for_query = true;
#define PendingConfigOption(name,val) \
(guc_names = lappend(guc_names, pstrdup(name)), \
PG_SETMASK(&UnBlockSig);
if (!ignore_till_sync)
- send_rfq = true; /* initially, or after error */
+ send_ready_for_query = true; /* initially, or after error */
/*
* Non-error queries loop here.
* processing of batched messages, and because we don't want to report
* uncommitted updates (that confuses autovacuum).
*/
- if (send_rfq)
+ if (send_ready_for_query)
{
if (IsTransactionOrTransactionBlock())
{
}
ReadyForQuery(whereToSendOutput);
- send_rfq = false;
+ send_ready_for_query = false;
}
/*
exec_simple_query(query_string);
- send_rfq = true;
+ send_ready_for_query = true;
}
break;
/* commit the function-invocation transaction */
finish_xact_command();
- send_rfq = true;
+ send_ready_for_query = true;
break;
case 'C': /* close */
case 'S': /* sync */
pq_getmsgend(&input_message);
finish_xact_command();
- send_rfq = true;
+ send_ready_for_query = true;
break;
/*