mirror of
https://github.com/postgres/postgres.git
synced 2026-02-28 04:10:35 -05:00
A QueryEnvironment concept is added, which allows new types of objects to be passed into queries from parsing on through execution. At this point, the only thing implemented is a collection of EphemeralNamedRelation objects -- relations which can be referenced by name in queries, but do not exist in the catalogs. The only type of ENR implemented is NamedTuplestore, but provision is made to add more types fairly easily. An ENR can carry its own TupleDesc or reference a relation in the catalogs by relid. Although these features can be used without SPI, convenience functions are added to SPI so that ENRs can easily be used by code run through SPI. The initial use of all this is going to be transition tables in AFTER triggers, but that will be added to each PL as a separate commit. An incidental effect of this patch is to produce a more informative error message if an attempt is made to modify the contents of a CTE from a referencing DML statement. No tests previously covered that possibility, so one is added. Kevin Grittner and Thomas Munro Reviewed by Heikki Linnakangas, David Fetter, and Thomas Munro with valuable comments and suggestions from many others
60 lines
2.1 KiB
C
60 lines
2.1 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* prepare.h
|
|
* PREPARE, EXECUTE and DEALLOCATE commands, and prepared-stmt storage
|
|
*
|
|
*
|
|
* Copyright (c) 2002-2017, PostgreSQL Global Development Group
|
|
*
|
|
* src/include/commands/prepare.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef PREPARE_H
|
|
#define PREPARE_H
|
|
|
|
#include "commands/explain.h"
|
|
#include "datatype/timestamp.h"
|
|
#include "utils/plancache.h"
|
|
|
|
/*
|
|
* The data structure representing a prepared statement. This is now just
|
|
* a thin veneer over a plancache entry --- the main addition is that of
|
|
* a name.
|
|
*
|
|
* Note: all subsidiary storage lives in the referenced plancache entry.
|
|
*/
|
|
typedef struct
|
|
{
|
|
/* dynahash.c requires key to be first field */
|
|
char stmt_name[NAMEDATALEN];
|
|
CachedPlanSource *plansource; /* the actual cached plan */
|
|
bool from_sql; /* prepared via SQL, not FE/BE protocol? */
|
|
TimestampTz prepare_time; /* the time when the stmt was prepared */
|
|
} PreparedStatement;
|
|
|
|
|
|
/* Utility statements PREPARE, EXECUTE, DEALLOCATE, EXPLAIN EXECUTE */
|
|
extern void PrepareQuery(PrepareStmt *stmt, const char *queryString,
|
|
int stmt_location, int stmt_len);
|
|
extern void ExecuteQuery(ExecuteStmt *stmt, IntoClause *intoClause,
|
|
const char *queryString, ParamListInfo params,
|
|
DestReceiver *dest, char *completionTag);
|
|
extern void DeallocateQuery(DeallocateStmt *stmt);
|
|
extern void ExplainExecuteQuery(ExecuteStmt *execstmt, IntoClause *into,
|
|
ExplainState *es, const char *queryString,
|
|
ParamListInfo params, QueryEnvironment *queryEnv);
|
|
|
|
/* Low-level access to stored prepared statements */
|
|
extern void StorePreparedStatement(const char *stmt_name,
|
|
CachedPlanSource *plansource,
|
|
bool from_sql);
|
|
extern PreparedStatement *FetchPreparedStatement(const char *stmt_name,
|
|
bool throwError);
|
|
extern void DropPreparedStatement(const char *stmt_name, bool showError);
|
|
extern TupleDesc FetchPreparedStatementResultDesc(PreparedStatement *stmt);
|
|
extern List *FetchPreparedStatementTargetList(PreparedStatement *stmt);
|
|
|
|
extern void DropAllPreparedStatements(void);
|
|
|
|
#endif /* PREPARE_H */
|