mirror of
https://github.com/postgres/postgres.git
synced 2025-05-28 05:21:27 +03:00
Remove circular #include's between plpython.h and plpy_util.h.
plpython.h included plpy_util.h, simply on the grounds that "it's easier to just include it everywhere". However, plpy_util.h must include plpython.h, or it won't pass headerscheck. While the resulting circularity doesn't have any immediate bad effect, it's poor design. We have seen serious messes arise in the past from overly-broad inclusion footprints created by such circularities, so let's establish a project policy against it. To fix, just replace *.c files' inclusions of plpython.h with plpy_util.h. They'll pull in plpython.h indirectly; indeed, almost all have already done so via inclusions of other plpy_xxx.h headers. (Any extensions using plpython.h can do likewise without breaking the compatibility of their code with prior Postgres versions.) Reported-by: Bertrand Drouvot <bertranddrouvot.pg@gmail.com> Author: Tom Lane <tgl@sss.pgh.pa.us> Reviewed-by: Bertrand Drouvot <bertranddrouvot.pg@gmail.com> Discussion: https://postgr.es/m/aAxQ6fcY5QQV1lo3@ip-10-97-1-34.eu-west-3.compute.internal
This commit is contained in:
parent
e8ca9ed1d2
commit
2311f193ea
@ -3,7 +3,7 @@
|
|||||||
#include "fmgr.h"
|
#include "fmgr.h"
|
||||||
#include "hstore/hstore.h"
|
#include "hstore/hstore.h"
|
||||||
#include "plpy_typeio.h"
|
#include "plpy_typeio.h"
|
||||||
#include "plpython.h"
|
#include "plpy_util.h"
|
||||||
|
|
||||||
PG_MODULE_MAGIC_EXT(
|
PG_MODULE_MAGIC_EXT(
|
||||||
.name = "hstore_plpython",
|
.name = "hstore_plpython",
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
#include "plpy_elog.h"
|
#include "plpy_elog.h"
|
||||||
#include "plpy_typeio.h"
|
#include "plpy_typeio.h"
|
||||||
#include "plpython.h"
|
#include "plpy_util.h"
|
||||||
#include "utils/fmgrprotos.h"
|
#include "utils/fmgrprotos.h"
|
||||||
#include "utils/jsonb.h"
|
#include "utils/jsonb.h"
|
||||||
#include "utils/numeric.h"
|
#include "utils/numeric.h"
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
#include "fmgr.h"
|
#include "fmgr.h"
|
||||||
#include "ltree/ltree.h"
|
#include "ltree/ltree.h"
|
||||||
#include "plpython.h"
|
#include "plpy_util.h"
|
||||||
|
|
||||||
PG_MODULE_MAGIC_EXT(
|
PG_MODULE_MAGIC_EXT(
|
||||||
.name = "ltree_plpython",
|
.name = "ltree_plpython",
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
#include "plpy_planobject.h"
|
#include "plpy_planobject.h"
|
||||||
#include "plpy_resultobject.h"
|
#include "plpy_resultobject.h"
|
||||||
#include "plpy_spi.h"
|
#include "plpy_spi.h"
|
||||||
#include "plpython.h"
|
#include "plpy_util.h"
|
||||||
#include "utils/memutils.h"
|
#include "utils/memutils.h"
|
||||||
|
|
||||||
static PyObject *PLy_cursor_query(const char *query);
|
static PyObject *PLy_cursor_query(const char *query);
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
#include "plpy_elog.h"
|
#include "plpy_elog.h"
|
||||||
#include "plpy_main.h"
|
#include "plpy_main.h"
|
||||||
#include "plpy_procedure.h"
|
#include "plpy_procedure.h"
|
||||||
#include "plpython.h"
|
#include "plpy_util.h"
|
||||||
|
|
||||||
PyObject *PLy_exc_error = NULL;
|
PyObject *PLy_exc_error = NULL;
|
||||||
PyObject *PLy_exc_fatal = NULL;
|
PyObject *PLy_exc_fatal = NULL;
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
#include "plpy_main.h"
|
#include "plpy_main.h"
|
||||||
#include "plpy_procedure.h"
|
#include "plpy_procedure.h"
|
||||||
#include "plpy_subxactobject.h"
|
#include "plpy_subxactobject.h"
|
||||||
#include "plpython.h"
|
#include "plpy_util.h"
|
||||||
#include "utils/fmgrprotos.h"
|
#include "utils/fmgrprotos.h"
|
||||||
#include "utils/rel.h"
|
#include "utils/rel.h"
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
#include "plpy_plpymodule.h"
|
#include "plpy_plpymodule.h"
|
||||||
#include "plpy_procedure.h"
|
#include "plpy_procedure.h"
|
||||||
#include "plpy_subxactobject.h"
|
#include "plpy_subxactobject.h"
|
||||||
#include "plpython.h"
|
#include "plpy_util.h"
|
||||||
#include "utils/guc.h"
|
#include "utils/guc.h"
|
||||||
#include "utils/memutils.h"
|
#include "utils/memutils.h"
|
||||||
#include "utils/rel.h"
|
#include "utils/rel.h"
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
#include "plpy_cursorobject.h"
|
#include "plpy_cursorobject.h"
|
||||||
#include "plpy_planobject.h"
|
#include "plpy_planobject.h"
|
||||||
#include "plpy_spi.h"
|
#include "plpy_spi.h"
|
||||||
#include "plpython.h"
|
#include "plpy_util.h"
|
||||||
#include "utils/memutils.h"
|
#include "utils/memutils.h"
|
||||||
|
|
||||||
static void PLy_plan_dealloc(PLyPlanObject *self);
|
static void PLy_plan_dealloc(PLyPlanObject *self);
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
#include "plpy_resultobject.h"
|
#include "plpy_resultobject.h"
|
||||||
#include "plpy_spi.h"
|
#include "plpy_spi.h"
|
||||||
#include "plpy_subxactobject.h"
|
#include "plpy_subxactobject.h"
|
||||||
#include "plpython.h"
|
#include "plpy_util.h"
|
||||||
#include "utils/builtins.h"
|
#include "utils/builtins.h"
|
||||||
|
|
||||||
HTAB *PLy_spi_exceptions = NULL;
|
HTAB *PLy_spi_exceptions = NULL;
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
#include "plpy_elog.h"
|
#include "plpy_elog.h"
|
||||||
#include "plpy_main.h"
|
#include "plpy_main.h"
|
||||||
#include "plpy_procedure.h"
|
#include "plpy_procedure.h"
|
||||||
#include "plpython.h"
|
#include "plpy_util.h"
|
||||||
#include "utils/builtins.h"
|
#include "utils/builtins.h"
|
||||||
#include "utils/hsearch.h"
|
#include "utils/hsearch.h"
|
||||||
#include "utils/memutils.h"
|
#include "utils/memutils.h"
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
#include "plpy_elog.h"
|
#include "plpy_elog.h"
|
||||||
#include "plpy_resultobject.h"
|
#include "plpy_resultobject.h"
|
||||||
#include "plpython.h"
|
#include "plpy_util.h"
|
||||||
|
|
||||||
static void PLy_result_dealloc(PLyResultObject *self);
|
static void PLy_result_dealloc(PLyResultObject *self);
|
||||||
static PyObject *PLy_result_colnames(PyObject *self, PyObject *unused);
|
static PyObject *PLy_result_colnames(PyObject *self, PyObject *unused);
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
#include "plpy_plpymodule.h"
|
#include "plpy_plpymodule.h"
|
||||||
#include "plpy_resultobject.h"
|
#include "plpy_resultobject.h"
|
||||||
#include "plpy_spi.h"
|
#include "plpy_spi.h"
|
||||||
#include "plpython.h"
|
#include "plpy_util.h"
|
||||||
#include "utils/memutils.h"
|
#include "utils/memutils.h"
|
||||||
|
|
||||||
static PyObject *PLy_spi_execute_query(char *query, long limit);
|
static PyObject *PLy_spi_execute_query(char *query, long limit);
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
#include "access/xact.h"
|
#include "access/xact.h"
|
||||||
#include "plpy_elog.h"
|
#include "plpy_elog.h"
|
||||||
#include "plpy_subxactobject.h"
|
#include "plpy_subxactobject.h"
|
||||||
#include "plpython.h"
|
#include "plpy_util.h"
|
||||||
#include "utils/memutils.h"
|
#include "utils/memutils.h"
|
||||||
|
|
||||||
List *explicit_subtransactions = NIL;
|
List *explicit_subtransactions = NIL;
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
#include "plpy_elog.h"
|
#include "plpy_elog.h"
|
||||||
#include "plpy_main.h"
|
#include "plpy_main.h"
|
||||||
#include "plpy_typeio.h"
|
#include "plpy_typeio.h"
|
||||||
#include "plpython.h"
|
#include "plpy_util.h"
|
||||||
#include "utils/array.h"
|
#include "utils/array.h"
|
||||||
#include "utils/builtins.h"
|
#include "utils/builtins.h"
|
||||||
#include "utils/fmgroids.h"
|
#include "utils/fmgroids.h"
|
||||||
|
@ -9,7 +9,6 @@
|
|||||||
#include "mb/pg_wchar.h"
|
#include "mb/pg_wchar.h"
|
||||||
#include "plpy_elog.h"
|
#include "plpy_elog.h"
|
||||||
#include "plpy_util.h"
|
#include "plpy_util.h"
|
||||||
#include "plpython.h"
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Convert a Python unicode object to a Python string/bytes object in
|
* Convert a Python unicode object to a Python string/bytes object in
|
||||||
|
@ -2,6 +2,10 @@
|
|||||||
*
|
*
|
||||||
* plpython.h - Python as a procedural language for PostgreSQL
|
* plpython.h - Python as a procedural language for PostgreSQL
|
||||||
*
|
*
|
||||||
|
* Note: this file is #include'd by each of the sub-module header files
|
||||||
|
* (plpy_elog.h, etc). It's therefore unnecessary for any plpython *.c
|
||||||
|
* files to include it directly.
|
||||||
|
*
|
||||||
* Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
|
* Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
|
||||||
* Portions Copyright (c) 1994, Regents of the University of California
|
* Portions Copyright (c) 1994, Regents of the University of California
|
||||||
*
|
*
|
||||||
@ -38,9 +42,4 @@
|
|||||||
#undef TEXTDOMAIN
|
#undef TEXTDOMAIN
|
||||||
#define TEXTDOMAIN PG_TEXTDOMAIN("plpython")
|
#define TEXTDOMAIN PG_TEXTDOMAIN("plpython")
|
||||||
|
|
||||||
/*
|
|
||||||
* Used throughout, so it's easier to just include it everywhere.
|
|
||||||
*/
|
|
||||||
#include "plpy_util.h"
|
|
||||||
|
|
||||||
#endif /* PLPYTHON_H */
|
#endif /* PLPYTHON_H */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user