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

CONC-282:

Connector/C now provides additional information for package version
mariadb_config --cc_version lists the package version
Beside MARIADB_PACKAGE_VERSION numeric representation MARIADB_PACKAGE_VERSION_ID can be used now within preprocessor directives
This commit is contained in:
Georg Richter
2017-10-02 09:08:03 +02:00
parent b241f8995f
commit 7209efa5aa
4 changed files with 23 additions and 12 deletions

View File

@@ -924,7 +924,7 @@ static int test_fetch_double(MYSQL *mysql)
return rc;
}
static int test_conc282(MYSQL *mysql)
static int test_conc281(MYSQL *mysql)
{
int rc;
MYSQL_STMT *stmt= mysql_stmt_init(mysql);
@@ -973,7 +973,7 @@ static int test_conc282(MYSQL *mysql)
}
struct my_tests_st my_tests[] = {
{"test_conc282", test_conc282, 1, 0, NULL, NULL},
{"test_conc281", test_conc281, 1, 0, NULL, NULL},
{"test_fetch_seek", test_fetch_seek, 1, 0, NULL , NULL},
{"test_fetch_offset", test_fetch_offset, 1, 0, NULL , NULL},
{"test_fetch_column", test_fetch_column, 1, 0, NULL , NULL},