
maxscale-system-test changed in order to control test environment by itself. Every test checks which machines are running, compare with list of needed machines and start new VMs is they are missing in the running machines list. Tests are executiong MDBCI commands, MDBCI executable should be in the PATH
15 lines
322 B
C
15 lines
322 B
C
#pragma once
|
|
|
|
#include <mysql.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "sql_t1.h"
|
|
|
|
/**
|
|
* @brief big_transaction Executes big transaction (includes N INSERTs of 10000 rows)
|
|
* @param conn MYSQL connection handler
|
|
* @param N Number of INSERTs
|
|
* @return 0 if success
|
|
*/
|
|
int big_transaction(MYSQL* conn, int N);
|