We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ccac92 commit e254ff2Copy full SHA for e254ff2
src/pl/plpython/plpy_spi.c
@@ -93,7 +93,6 @@ PLy_spi_prepare(PyObject *self, PyObject *args)
93
HeapTuple typeTup;
94
Oid typeId;
95
int32 typmod;
96
- Form_pg_type typeStruct;
97
98
optr = PySequence_GetItem(list, i);
99
if (PyString_Check(optr))
@@ -129,7 +128,6 @@ PLy_spi_prepare(PyObject *self, PyObject *args)
129
128
optr = NULL;
130
131
plan->types[i] = typeId;
132
- typeStruct = (Form_pg_type) GETSTRUCT(typeTup);
133
PLy_output_datum_func(&plan->args[i], typeTup);
134
ReleaseSysCache(typeTup);
135
}
0 commit comments