File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,14 +24,14 @@ if test "$PHP_COUCHBASE" != "no"; then
24
24
libcouchbase.a should be in <libcouchbase-dir>/lib )
25
25
fi
26
26
27
- AC_MSG_CHECKING ( [ for libcouchbase version >= 2.9.2 ] )
27
+ AC_MSG_CHECKING ( [ for libcouchbase version >= 2.9.5 ] )
28
28
LCB_VERSION=$($EGREP "define LCB_VERSION " $LIBCOUCHBASE_DIR/include/libcouchbase/configuration.h | $SED -e 's/[ [ ^0-9x] ] //g')
29
29
AC_MSG_RESULT ( [ $LCB_VERSION] )
30
30
if test "x$LCB_VERSION" = "x0x000000"; then
31
31
AC_MSG_ERROR ( [ seems like libcouchbase is not installed from official tarball or git clone. Do not use github tags to download releases.] )
32
32
fi
33
- if test $(printf %d $LCB_VERSION) -lt $(printf %d 0x020902 ); then
34
- AC_MSG_ERROR ( [ libcouchbase greater or equal to 2.9.2 required] )
33
+ if test $(printf %d $LCB_VERSION) -lt $(printf %d 0x020905 ); then
34
+ AC_MSG_ERROR ( [ libcouchbase greater or equal to 2.9.5 required] )
35
35
fi
36
36
37
37
PHP_ADD_INCLUDE($LIBCOUCHBASE_DIR/include)
Original file line number Diff line number Diff line change @@ -357,7 +357,7 @@ PHP_METHOD(Bucket, query)
357
357
RETURN_NULL ();
358
358
}
359
359
smart_str_0 (& buf );
360
- cmd .cmdflags |= LCB_CMDN1QL_F_CBASQUERY ;
360
+ cmd .cmdflags |= LCB_CMDN1QL_F_ANALYTICSQUERY ;
361
361
PCBC_SMARTSTR_SET (buf , cmd .query , cmd .nquery );
362
362
pcbc_log (LOGARGS (obj , TRACE ), "ANALYTICS: " LCB_LOG_SPEC ("%.*s" ),
363
363
lcb_is_redacting_logs (obj -> conn -> lcb ) ? LCB_LOG_UD_OTAG : "" , PCBC_SMARTSTR_TRACE (buf ),
You can’t perform that action at this time.
0 commit comments