We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc1a6e1 commit d839dbdCopy full SHA for d839dbd
hphp/runtime/ext/mysql/ext_mysql.cpp
@@ -825,7 +825,11 @@ void mysqlExtension::moduleRegisterNative() {
825
HHVM_RC_INT(MYSQL_CLIENT_CR_INSECURE_API_ERR, CR_INSECURE_API_ERR)
826
HHVM_RC_INT(MYSQL_CLIENT_CR_FILE_NAME_TOO_LONG, CR_FILE_NAME_TOO_LONG)
827
HHVM_RC_INT(MYSQL_CLIENT_CR_SSL_FIPS_MODE_ERR, CR_SSL_FIPS_MODE_ERR)
828
+#ifdef CR_DEPRECATED_COMPRESSION_NOT_SUPPORTED
829
HHVM_RC_INT(MYSQL_CLIENT_CR_COMPRESSION_NOT_SUPPORTED, CR_DEPRECATED_COMPRESSION_NOT_SUPPORTED)
830
+#else
831
+ HHVM_RC_INT(MYSQL_CLIENT_CR_COMPRESSION_NOT_SUPPORTED, CR_COMPRESSION_NOT_SUPPORTED)
832
+#endif
833
834
// We can't add the following yet as some builds are not using a new enough MySQL client
835
0 commit comments