diff options
author | Noah Misch <noah@leadboat.com> | 2020-05-21 08:31:16 -0700 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2020-05-21 08:31:16 -0700 |
commit | 3350fb5d1f9d73de15428e9bfa83dce96421fc14 (patch) | |
tree | 1308a05515eb979bcd153ef12252d5459c545026 /src/pl/plpython/plpy_subxactobject.c | |
parent | e4db972ed5f12c09403ff0be24e12e5d4032aaaa (diff) | |
download | postgresql-3350fb5d1f9d73de15428e9bfa83dce96421fc14.tar.gz postgresql-3350fb5d1f9d73de15428e9bfa83dce96421fc14.zip |
Clear some style deviations.
Diffstat (limited to 'src/pl/plpython/plpy_subxactobject.c')
-rw-r--r-- | src/pl/plpython/plpy_subxactobject.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/pl/plpython/plpy_subxactobject.c b/src/pl/plpython/plpy_subxactobject.c index 98d7c90c81b..5c92a0e089a 100644 --- a/src/pl/plpython/plpy_subxactobject.c +++ b/src/pl/plpython/plpy_subxactobject.c @@ -19,9 +19,8 @@ static void PLy_subtransaction_dealloc(PyObject *subxact); static PyObject *PLy_subtransaction_enter(PyObject *self, PyObject *unused); static PyObject *PLy_subtransaction_exit(PyObject *self, PyObject *args); -static char PLy_subtransaction_doc[] = { - "PostgreSQL subtransaction context manager" -}; +static char PLy_subtransaction_doc[] = +"PostgreSQL subtransaction context manager"; static PyMethodDef PLy_subtransaction_methods[] = { {"__enter__", PLy_subtransaction_enter, METH_VARARGS, NULL}, |