/* Whether the PGRES_SINGLE_TUPLE constant is defined */
#undef HAVE_PGRES_SINGLE_TUPLE
+/* Whether the PGRES_TUPLES_CHUNK constant is defined */
+#undef HAVE_PGRES_TUPLES_CHUNK
+
/* Whether the PGRES_PIPELINE_SYNC constant is defined */
#undef HAVE_PGRES_PIPELINE_SYNC
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
printf "%s\n" "yes" >&6; }
+else case e in #(
+ e)
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
+printf "%s\n" "no" >&6; }
+ ;;
+esac
+fi
+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
+
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for PGRES_TUPLES_CHUNK" >&5
+printf %s "checking for PGRES_TUPLES_CHUNK... " >&6; }
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+#include <libpq-fe.h>
+int
+main (void)
+{
+
+ if (PGRES_TUPLES_CHUNK) return 0;
+ return 1;
+
+ ;
+ return 0;
+}
+_ACEOF
+if ac_fn_c_try_compile "$LINENO"
+then :
+
+
+printf "%s\n" "#define HAVE_PGRES_TUPLES_CHUNK 1" >>confdefs.h
+
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+printf "%s\n" "yes" >&6; }
+
else case e in #(
e)
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
AC_MSG_RESULT(no)
])
+ AC_MSG_CHECKING([for PGRES_TUPLES_CHUNK])
+ AC_COMPILE_IFELSE(
+ [AC_LANG_PROGRAM([#include <libpq-fe.h>], [[
+ if (PGRES_TUPLES_CHUNK) return 0;
+ return 1;
+ ]])],
+ [
+ AC_DEFINE([HAVE_PGRES_TUPLES_CHUNK], [1], [Whether the PGRES_TUPLES_CHUNK constant is defined])
+ AC_MSG_RESULT(yes)
+ ],
+ [
+ AC_MSG_RESULT(no)
+ ])
+
AC_MSG_CHECKING([for PGRES_COPY_BOTH])
AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM([#include <libpq-fe.h>], [[
case PGRES_COMMAND_OK:
#ifdef HAVE_PGRES_SINGLE_TUPLE
case PGRES_SINGLE_TUPLE:
+ #endif
+ #ifdef HAVE_PGRES_TUPLES_CHUNK
+ case PGRES_TUPLES_CHUNK:
#endif
case PGRES_TUPLES_OK:
#ifdef HAVE_PGRES_COPY_BOTH
*/
#ifdef HAVE_PGRES_SINGLE_TUPLE
case PGRES_SINGLE_TUPLE:
+#endif
+#ifdef HAVE_PGRES_TUPLES_CHUNK
+ case PGRES_TUPLES_CHUNK:
#endif
case PGRES_TUPLES_OK:
sql_conn->cur_row = 0;