summaryrefslogtreecommitdiff
path: root/src/pl/plpython/plpy_planobject.c
diff options
context:
space:
mode:
authorNoah Misch2020-05-21 15:31:16 +0000
committerNoah Misch2020-05-21 15:31:16 +0000
commit3350fb5d1f9d73de15428e9bfa83dce96421fc14 (patch)
tree1308a05515eb979bcd153ef12252d5459c545026 /src/pl/plpython/plpy_planobject.c
parente4db972ed5f12c09403ff0be24e12e5d4032aaaa (diff)
Clear some style deviations.
Diffstat (limited to 'src/pl/plpython/plpy_planobject.c')
-rw-r--r--src/pl/plpython/plpy_planobject.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/pl/plpython/plpy_planobject.c b/src/pl/plpython/plpy_planobject.c
index c23e79fe55f..5951d2a6ff5 100644
--- a/src/pl/plpython/plpy_planobject.c
+++ b/src/pl/plpython/plpy_planobject.c
@@ -18,9 +18,7 @@ static PyObject *PLy_plan_cursor(PyObject *self, PyObject *args);
static PyObject *PLy_plan_execute(PyObject *self, PyObject *args);
static PyObject *PLy_plan_status(PyObject *self, PyObject *args);
-static char PLy_plan_doc[] = {
- "Store a PostgreSQL plan"
-};
+static char PLy_plan_doc[] = "Store a PostgreSQL plan";
static PyMethodDef PLy_plan_methods[] = {
{"cursor", PLy_plan_cursor, METH_VARARGS, NULL},