summaryrefslogtreecommitdiff
path: root/src/include/tcop
diff options
context:
space:
mode:
authorPavan Deolasee2017-06-14 06:12:23 +0000
committerPavan Deolasee2017-06-14 06:12:23 +0000
commit18b853db9450c1418ddb3f356424ed65d1ac98a6 (patch)
tree7c0f620aa254f4cdb9f1fbe81136d7623a3a6fe6 /src/include/tcop
parent15dd5274c323fb93e4e3ea9ad2185aaaec10f79c (diff)
Revert "Collect and return query substrings corresponding to each SQL statement"
This reverts commit 455ff923454e78d80b77639a381db9b05c776577. Core Postgres has now added support for extracting query string for each command in a multi-command SQL. So we can use that facility instead of cooking up something on our own.
Diffstat (limited to 'src/include/tcop')
-rw-r--r--src/include/tcop/tcopprot.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/tcop/tcopprot.h b/src/include/tcop/tcopprot.h
index a32735bd3f..8700e5d88e 100644
--- a/src/include/tcop/tcopprot.h
+++ b/src/include/tcop/tcopprot.h
@@ -51,7 +51,6 @@ typedef enum
extern int log_statement;
extern List *pg_parse_query(const char *query_string);
-extern List *pg_parse_query_get_source(const char *query_string, List **queries);
extern List *pg_analyze_and_rewrite(RawStmt *parsetree,
const char *query_string,
Oid *paramTypes, int numParams,