Uncrustify maxscale
See script directory for method. The script to run in the top level MaxScale directory is called maxscale-uncrustify.sh, which uses another script, list-src, from the same directory (so you need to set your PATH). The uncrustify version was 0.66.
This commit is contained in:
@ -13,12 +13,17 @@
|
||||
* @param rows number of rows to INSERT (executes INSERT stetament 'rows' times)
|
||||
* @return 0 in case of success
|
||||
*/
|
||||
int test_longblob(TestConnections* Test, MYSQL * conn, char * blob_name, unsigned long chunk_size, int chunks,
|
||||
int test_longblob(TestConnections* Test,
|
||||
MYSQL* conn,
|
||||
char* blob_name,
|
||||
unsigned long chunk_size,
|
||||
int chunks,
|
||||
int rows);
|
||||
|
||||
|
||||
/**
|
||||
* @brief check_longblob_data Does SELECT against table created by test_longblob() and cheks that data are correct
|
||||
* @brief check_longblob_data Does SELECT against table created by test_longblob() and cheks that data are
|
||||
*correct
|
||||
* @param Test TestConnection object
|
||||
* @param conn MYSQL connection handler
|
||||
* @param chunk_size size of one data chunk (in sizeof(long usingned))
|
||||
@ -26,7 +31,10 @@ int test_longblob(TestConnections* Test, MYSQL * conn, char * blob_name, unsigne
|
||||
* @param rows number of rows in the table
|
||||
* @return 0 in case of success
|
||||
*/
|
||||
int check_longblob_data(TestConnections* Test, MYSQL * conn, unsigned long chunk_size, int chunks,
|
||||
int check_longblob_data(TestConnections* Test,
|
||||
MYSQL* conn,
|
||||
unsigned long chunk_size,
|
||||
int chunks,
|
||||
int rows);
|
||||
|
||||
#endif // BLOB_TEST_H
|
||||
|
||||
Reference in New Issue
Block a user