You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for (i=0; lib[i] !=0&&MYSQL_SERVER_VERSION[i] !=0; i++) {
1093
+
1094
+
for (i=0; lib[i] !=0&&MYSQL_LINK_VERSION[i] !=0; i++) {
1083
1095
if (lib[i] =='.') {
1084
1096
dots++;
1085
1097
/* we only compare MAJOR and MINOR */
1086
1098
if (dots==2) break;
1087
1099
}
1088
-
if (lib[i] !=MYSQL_SERVER_VERSION[i]) {
1089
-
rb_raise(rb_eRuntimeError, "Incorrect MySQL client library version! This gem was compiled for %s but the client library is %s.", MYSQL_SERVER_VERSION, lib);
1100
+
if (lib[i] !=MYSQL_LINK_VERSION[i]) {
1101
+
rb_raise(rb_eRuntimeError, "Incorrect MySQL client library version! This gem was compiled for %s but the client library is %s.", MYSQL_LINK_VERSION, lib);
0 commit comments