1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

After merge fixes: remove const and add query buffer.

This commit is contained in:
unknown
2006-11-22 16:51:20 +03:00
parent 498fcdc6b3
commit de2fbec489

View File

@ -15604,7 +15604,8 @@ static void test_bug21635()
"COUNT(i)", "COUNT(i)",
"COUNT(i) AS A3", "A3",
};
const char *query_end;
char query[MAX_TEST_QUERY_LENGTH];
char *query_end;
MYSQL_RES *result;
MYSQL_FIELD *field;
unsigned int field_count, i;