1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-05 02:22:28 +03:00

PL/Python: Add argument names to function declarations

For easier source reading
This commit is contained in:
Peter Eisentraut
2011-12-29 22:55:49 +02:00
parent a671d9409b
commit f9de1e9a96
20 changed files with 104 additions and 104 deletions

View File

@@ -40,10 +40,10 @@ typedef struct PLyProcedureEntry
} PLyProcedureEntry;
/* PLyProcedure manipulation */
extern char *PLy_procedure_name(PLyProcedure *);
extern PLyProcedure *PLy_procedure_get(Oid, bool);
extern void PLy_procedure_compile(PLyProcedure *, const char *);
extern void PLy_procedure_delete(PLyProcedure *);
extern char *PLy_procedure_name(PLyProcedure *proc);
extern PLyProcedure *PLy_procedure_get(Oid fn_oid, bool is_trigger);
extern void PLy_procedure_compile(PLyProcedure *proc, const char *src);
extern void PLy_procedure_delete(PLyProcedure *proc);
/* currently active plpython function */