mirror of https://github.com/sysown/proxysql
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
173 lines
4.2 KiB
173 lines
4.2 KiB
#include <cstdlib>
|
|
#include <cstdio>
|
|
#include <cstring>
|
|
#include <unistd.h>
|
|
|
|
#include <string>
|
|
#include <mysql.h>
|
|
|
|
#include "tap.h"
|
|
#include "command_line.h"
|
|
#include "utils.h"
|
|
|
|
const int NUM_ROWS=5;
|
|
|
|
int restore_admin(MYSQL* mysqladmin) {
|
|
MYSQL_QUERY(mysqladmin, "load mysql query rules from disk");
|
|
MYSQL_QUERY(mysqladmin, "load mysql query rules to runtime");
|
|
MYSQL_QUERY(mysqladmin, "load mysql servers from disk");
|
|
MYSQL_QUERY(mysqladmin, "load mysql servers to runtime");
|
|
|
|
return 0;
|
|
}
|
|
|
|
int main(int argc, char** argv) {
|
|
CommandLine cl;
|
|
|
|
if(cl.getEnv())
|
|
return exit_status();
|
|
|
|
plan(3);
|
|
diag("Testing PS large resultset");
|
|
|
|
MYSQL* mysqladmin = mysql_init(NULL);
|
|
if (!mysqladmin)
|
|
return exit_status();
|
|
|
|
if (!mysql_real_connect(mysqladmin, cl.host, cl.admin_username, cl.admin_password, NULL, cl.admin_port, NULL, 0)) {
|
|
fprintf(stderr, "File %s, line %d, Error: %s\n",
|
|
__FILE__, __LINE__, mysql_error(mysqladmin));
|
|
return exit_status();
|
|
}
|
|
|
|
MYSQL* mysql = mysql_init(NULL);
|
|
if (!mysql)
|
|
return exit_status();
|
|
|
|
if (!mysql_real_connect(mysql, cl.host, cl.username, cl.password, NULL, cl.port, NULL, 0)) {
|
|
fprintf(stderr, "File %s, line %d, Error: %s\n",
|
|
__FILE__, __LINE__, mysql_error(mysql));
|
|
return exit_status();
|
|
}
|
|
|
|
MYSQL_QUERY(mysqladmin, "delete from mysql_query_rules");
|
|
MYSQL_QUERY(mysqladmin, "load mysql query rules to runtime");
|
|
|
|
MYSQL_QUERY(mysqladmin, "delete from mysql_servers where hostgroup_id=1");
|
|
MYSQL_QUERY(mysqladmin, "load mysql servers to runtime");
|
|
|
|
if (create_table_test_sbtest1(NUM_ROWS,mysql)) {
|
|
fprintf(stderr, "File %s, line %d, Error: create_table_test_sbtest1() failed\n", __FILE__, __LINE__);
|
|
return exit_status();
|
|
}
|
|
|
|
std::string query = "";
|
|
|
|
#define STRING_SIZE 4096
|
|
|
|
MYSQL_BIND bind2[8];
|
|
int int_data1;
|
|
int int_data2;
|
|
int int_data3;
|
|
int int_data4;
|
|
char str_data1[STRING_SIZE];
|
|
char str_data2[STRING_SIZE];
|
|
char str_data3[STRING_SIZE];
|
|
char str_data4[STRING_SIZE];
|
|
my_bool is_null2[8];
|
|
long unsigned int length2[8];
|
|
my_bool error2[8];
|
|
int row_count2=0;
|
|
|
|
for (int loops=0; loops<3; loops++) {
|
|
MYSQL_STMT *stmt2a = mysql_stmt_init(mysql);
|
|
if (!stmt2a)
|
|
{
|
|
ok(false, " mysql_stmt_init(), out of memory\n");
|
|
restore_admin(mysqladmin);
|
|
return exit_status();
|
|
}
|
|
query = "SELECT t1.id id1, t2.id id2 FROM test.sbtest1 t1 JOIN test.sbtest1 t2 LIMIT 20";
|
|
if (mysql_stmt_prepare(stmt2a,query.c_str(), query.size())) {
|
|
fprintf(stderr, "Query error %s\n", mysql_error(mysql));
|
|
mysql_close(mysql);
|
|
mysql_library_end();
|
|
restore_admin(mysqladmin);
|
|
return exit_status();
|
|
}
|
|
|
|
if (mysql_stmt_execute(stmt2a))
|
|
{
|
|
fprintf(stderr, " mysql_stmt_execute(), failed\n");
|
|
ok(false, " %s\n", mysql_stmt_error(stmt2a));
|
|
restore_admin(mysqladmin);
|
|
return exit_status();
|
|
}
|
|
|
|
#define STRING_SIZE 4096
|
|
|
|
MYSQL_BIND bind2a[8];
|
|
my_bool is_null2a[8];
|
|
long unsigned int length2a[8];
|
|
my_bool error2a[8];
|
|
int row_count2a=0;
|
|
memset(bind2a, 0, sizeof(bind2a));
|
|
|
|
bind2a[0].buffer_type= MYSQL_TYPE_LONG;
|
|
bind2a[0].buffer= (char *)&int_data1;
|
|
bind2a[0].buffer_length= 8;
|
|
|
|
bind2a[1].buffer_type= MYSQL_TYPE_LONG;
|
|
bind2a[1].buffer= (char *)&int_data2;
|
|
bind2a[1].buffer_length= 8;
|
|
|
|
MYSQL_RES * prepare_meta_result = mysql_stmt_result_metadata(stmt2a);
|
|
if (mysql_stmt_bind_result(stmt2a, bind2a))
|
|
{
|
|
fprintf(stderr, " mysql_stmt_bind_result() failed\n");
|
|
ok(false, " %s\n", mysql_stmt_error(stmt2a));
|
|
restore_admin(mysqladmin);
|
|
return exit_status();
|
|
}
|
|
|
|
/*
|
|
// WE INTENTIONALLY SKIP THIS
|
|
if (mysql_stmt_store_result(stmt2a))
|
|
{
|
|
fprintf(stderr, " mysql_stmt_store_result() failed\n");
|
|
ok(false, " %s\n", mysql_stmt_error(stmt2a));
|
|
restore_admin(mysqladmin);
|
|
return exit_status();
|
|
}
|
|
*/
|
|
|
|
int stmt2aRC = 0;
|
|
while (!(stmt2aRC = mysql_stmt_fetch(stmt2a)))
|
|
{
|
|
fprintf(stderr, "Row %d : %d , %d\n", row_count2a, int_data1, int_data2);
|
|
row_count2a++;
|
|
}
|
|
ok(row_count2a==20, "Fetched %d rows. To fetch 20 rows", row_count2a);
|
|
|
|
if (prepare_meta_result) {
|
|
mysql_free_result(prepare_meta_result);
|
|
}
|
|
|
|
if (mysql_stmt_close(stmt2a))
|
|
{
|
|
fprintf(stderr, " failed while closing the statement\n");
|
|
ok(false, " %s\n", mysql_error(mysql));
|
|
restore_admin(mysqladmin);
|
|
return exit_status();
|
|
}
|
|
}
|
|
|
|
restore_admin(mysqladmin);
|
|
|
|
mysql_close(mysql);
|
|
mysql_library_end();
|
|
|
|
return exit_status();
|
|
}
|
|
|