1
0
mirror of https://github.com/mariadb-corporation/mariadb-connector-c.git synced 2025-08-07 02:42:49 +03:00

travis fix:

remove server builds > 10.5, since 10.6 and above use
Connector/C 3.3 branch.
This commit is contained in:
Georg Richter
2023-04-22 06:56:53 +02:00
parent 0e452f66ac
commit 6c29921bbe
2 changed files with 6 additions and 5 deletions

View File

@@ -618,6 +618,12 @@ int test_conc21(MYSQL *mysql)
int major=0, minor= 0, patch=0;
SKIP_MAXSCALE;
if (strlen(mysql_get_server_info(mysql)) > 63)
{
diag("server name is too long - skip until rpl hack was removed");
return SKIP;
}
rc= mysql_query(mysql, "SELECT @@version");
check_mysql_rc(rc, mysql);