-<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.465 2008/12/31 00:08:33 tgl Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.466 2009/01/07 21:48:15 momjian Exp $ -->
<chapter id="functions">
<title>Functions and Operators</title>
<row>
<entry><literal><function>current_query</function></literal></entry>
<entry><type>text</type></entry>
- <entry>text of the currently executing query (might contain more than one statement)</entry>
+ <entry>text of the currently executing query (might match
+ client-supplied query or be internal query string)</entry>
</row>
<row>
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/utils/adt/misc.c,v 1.68 2009/01/07 19:51:21 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/utils/adt/misc.c,v 1.69 2009/01/07 21:48:15 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include "storage/pmsignal.h"
#include "storage/procarray.h"
#include "utils/builtins.h"
+#include "tcop/pquery.h"
#include "tcop/tcopprot.h"
#define atooid(x) ((Oid) strtoul((x), NULL, 10))
Datum
current_query(PG_FUNCTION_ARGS)
{
- /* there is no easy way to access the more concise 'query_string' */
- if (debug_query_string)
- PG_RETURN_TEXT_P(cstring_to_text(debug_query_string));
- else
- PG_RETURN_NULL();
+ PG_RETURN_TEXT_P(cstring_to_text(ActivePortal->sourceText));
}
/*