We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parenta9f2e31 commit26e89e7Copy full SHA for 26e89e7
src/pl/plpython/plpy_cursorobject.c
@@ -134,7 +134,7 @@ PLy_cursor_query(const char *query)
134
SPI_freeplan(plan);
135
136
if (portal==NULL)
137
-elog(ERROR,"SPI_cursor_open() failed:%s",
+elog(ERROR,"SPI_cursor_open() failed:%s",
138
SPI_result_code_string(SPI_result));
139
140
cursor->portalname=PLy_strdup(portal->name);
@@ -255,7 +255,7 @@ PLy_cursor_plan(PyObject *ob, PyObject *args)
255
portal=SPI_cursor_open(NULL,plan->plan,plan->values,nulls,
256
PLy_curr_procedure->fn_readonly);
257
258
259
260
261