PostgreSQL Source Code  git master
plpy_main.h File Reference
#include "plpy_procedure.h"
Include dependency graph for plpy_main.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  PLyExecutionContext
 

Typedefs

typedef struct PLyExecutionContext PLyExecutionContext
 

Functions

PLyExecutionContextPLy_current_execution_context (void)
 
MemoryContext PLy_get_scratch_context (PLyExecutionContext *context)
 

Variables

PyObject * PLy_interp_globals
 

Typedef Documentation

◆ PLyExecutionContext

Function Documentation

◆ PLy_current_execution_context()

PLyExecutionContext* PLy_current_execution_context ( void  )

◆ PLy_get_scratch_context()

MemoryContext PLy_get_scratch_context ( PLyExecutionContext context)

Definition at line 376 of file plpy_main.c.

377 {
378  /*
379  * A scratch context might never be needed in a given plpython procedure,
380  * so allocate it on first request.
381  */
382  if (context->scratch_ctx == NULL)
383  context->scratch_ctx =
385  "PL/Python scratch context",
387  return context->scratch_ctx;
388 }
MemoryContext TopTransactionContext
Definition: mcxt.c:154
#define AllocSetContextCreate
Definition: memutils.h:129
#define ALLOCSET_DEFAULT_SIZES
Definition: memutils.h:160
tree context
Definition: radixtree.h:1829

References ALLOCSET_DEFAULT_SIZES, AllocSetContextCreate, context, and TopTransactionContext.

Referenced by PLy_input_convert(), and PLy_input_from_tuple().

Variable Documentation

◆ PLy_interp_globals

PyObject* PLy_interp_globals
extern

Definition at line 51 of file plpy_main.c.

Referenced by PLy_init_interp(), and PLy_procedure_compile().