pgsql: postgresql 17 added PGRES_TUPLE_CHUNK.

This commit is contained in:
Joris Vink 2024-12-08 14:56:33 +01:00
parent d3afe09d4e
commit 978cb0ab79

View File

@ -787,6 +787,9 @@ pgsql_read_result(struct kore_pgsql *pgsql)
case PGRES_TUPLES_OK:
#if PG_VERSION_NUM >= 90200
case PGRES_SINGLE_TUPLE:
#endif
#if PG_VERSION_NUM >= 170000
case PGRES_TUPLE_CHUNK:
#endif
pgsql->state = KORE_PGSQL_STATE_RESULT;
break;