We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 912d769 commit 0162689Copy full SHA for 0162689
1 file changed
src/mod/databases/mod_pgsql/mod_pgsql.c
@@ -605,6 +605,10 @@ switch_status_t database_handle_exec_string(switch_database_interface_handle_t *
605
#if PG_VERSION_NUM >= 90002
606
case PGRES_SINGLE_TUPLE:
607
/* Added in PostgreSQL 9.2 */
608
+#endif
609
+#if PG_VERSION_NUM >= 160001
610
+ case PGRES_TUPLES_CHUNK:
611
+ /* Added in PostgreSQL 16 */
612
#endif
613
case PGRES_COMMAND_OK:
614
case PGRES_TUPLES_OK:
0 commit comments