101 lines
2.2 KiB
C++
101 lines
2.2 KiB
C++
/**
|
|
* @file mxs682_cyrillic.cpp put cyrillic letters to the table
|
|
* - put string with Cyrillic into table
|
|
* - check SELECT from backend
|
|
*/
|
|
|
|
|
|
|
|
#include <iostream>
|
|
#include <unistd.h>
|
|
#include "testconnections.h"
|
|
#include <iconv.h>
|
|
|
|
using namespace std;
|
|
|
|
void check_val(MYSQL* conn, TestConnections* Test)
|
|
{
|
|
char val[256];
|
|
Test->set_timeout(20);
|
|
find_field(conn, "SELECT * FROM t2", "x", val);
|
|
|
|
Test->tprintf("result: %s\n", val);
|
|
|
|
if (strcmp("Кот", val) != 0 )
|
|
{
|
|
Test->add_result(1, "Wrong SELECT result: %s\n", val);
|
|
}
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
TestConnections * Test = new TestConnections(argc, argv);
|
|
Test->set_timeout(10);
|
|
|
|
Mariadb_nodes * nodes;
|
|
if (strstr(Test->test_name, "galera") != NULL)
|
|
{
|
|
nodes = Test->galera;
|
|
Test->tprintf("Galera!\n");
|
|
}
|
|
else
|
|
{
|
|
nodes = Test->repl;
|
|
}
|
|
|
|
|
|
/*
|
|
iconv_t converter = iconv_open ("koi8-r", "utf-8");
|
|
Test->tprintf("errno %d\n", errno);
|
|
|
|
char in_buf[] = "Кот";
|
|
char out_buf[100];
|
|
char *in_ptr = in_buf;
|
|
char *out_ptr = out_buf;
|
|
size_t in_size = strlen(in_buf);
|
|
size_t out_size = 100;
|
|
|
|
size_t n = iconv(converter, &in_ptr, &in_size, &out_ptr, &out_size);
|
|
|
|
Test->tprintf("n = %d\n", n);
|
|
//Test->tprintf("UTF-8: %s\n", out_buf);
|
|
|
|
iconv_close(converter);
|
|
*/
|
|
|
|
Test->connect_maxscale();
|
|
Test->set_timeout(10);
|
|
nodes->connect();
|
|
|
|
Test->set_timeout(10);
|
|
MYSQL * conn = Test->conn_rwsplit;
|
|
|
|
//Test->try_query(conn, (char *) "set names utf8mb4;");
|
|
execute_query_silent(conn, (char *) "DROP TABLE t2;");
|
|
Test->try_query(conn, (char *) "CREATE TABLE t2 (x varchar(10));");
|
|
char sql[256];
|
|
sprintf(sql, "INSERT INTO t2 VALUES (\"Кот\");");
|
|
Test->try_query(conn, sql);
|
|
Test->stop_timeout();
|
|
sleep(5);
|
|
|
|
check_val(Test->conn_rwsplit, Test);
|
|
check_val(Test->conn_master, Test);
|
|
check_val(Test->conn_slave, Test);
|
|
|
|
for (int i = 0; i < Test->repl->N; i++)
|
|
{
|
|
Test->tprintf("Node %d\n", i);
|
|
check_val(nodes->nodes[i], Test);
|
|
}
|
|
|
|
//execute_query_silent(conn, (char *) "DROP TABLE t2;");
|
|
|
|
Test->check_maxscale_alive();
|
|
int rval = Test->global_result;
|
|
delete Test;
|
|
return rval;
|
|
}
|
|
|
|
|