Skip to content

Commit 6aa073a

Browse files
committed
jdbc: Correct #ifdef condition
1 parent a693664 commit 6aa073a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jdbc/driver/nativeapi/libmysql_static_proxy.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ LibmysqlStaticProxy::stmt_bind_named_param(MYSQL_STMT * stmt, MYSQL_BIND * bind,
538538
my_bool
539539
LibmysqlStaticProxy::stmt_bind_param(MYSQL_STMT * stmt, MYSQL_BIND * bind)
540540
{
541-
#if MYSQL_VERSION_ID <= 80400
541+
#if MYSQL_VERSION_ID < 80400
542542
// TODO: we presume this will be removed in 8.4.0
543543
return ::mysql_stmt_bind_param(stmt, bind);
544544
#else

0 commit comments

Comments
 (0)