Add tests from develop

Added tests from develop. The test results need to be modified for 2.0.
This commit is contained in:
Markus Mäkelä
2017-05-26 15:40:40 +03:00
parent ad109408b5
commit d7d4ec29bb
596 changed files with 48543 additions and 0 deletions

View File

@ -0,0 +1,30 @@
#include <iostream>
#include "testconnections.h"
#include "sql_t1.h"
using namespace std;
int main(int argc, char *argv[])
{
char sql[1000000];
create_insert_string(sql, 16, 0);
printf("%s\n", sql);
create_insert_string(sql, 256, 1);
printf("%s\n", sql);
create_insert_string(sql, 4096, 2);
printf("%s\n", sql);
create_insert_string(sql, 65536, 3);
printf("%s\n", sql);
exit(0);
}