PT-90 Adding file needed for tests

This commit is contained in:
guriandoro
2017-03-22 11:37:41 -04:00
parent 00cb8d6874
commit 6a960b6bfb

View File

@@ -0,0 +1,11 @@
/* Prepare two statements*/
SET @random_statement_prepare = 'SELECT RAND() AS rand';
PREPARE rand_statement FROM @random_statement_prepare;
SET @absolute_value_statement_prepare = 'SELECT ABS(?) AS abs_A';
PREPARE abs_statement FROM @absolute_value_statement_prepare;
/* Wait to let pt-stalk to collect the data and find these prepare statements */
SELECT SLEEP(11);