1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
set @saved_slave_rows_search_algorithms = @@global.slave_rows_search_algorithms;
SELECT @@global.slave_rows_search_algorithms;
@@global.slave_rows_search_algorithms
TABLE_SCAN,INDEX_SCAN
SET GLOBAL SLAVE_ROWS_SEARCH_ALGORITHMS=DEFAULT;
SELECT @@global.slave_rows_search_algorithms;
@@global.slave_rows_search_algorithms
TABLE_SCAN,INDEX_SCAN
SET GLOBAL SLAVE_ROWS_SEARCH_ALGORITHMS='TABLE_SCAN';
SELECT @@global.slave_rows_search_algorithms;
@@global.slave_rows_search_algorithms
TABLE_SCAN
SET GLOBAL SLAVE_ROWS_SEARCH_ALGORITHMS='HASH_SCAN';
SELECT @@global.slave_rows_search_algorithms;
@@global.slave_rows_search_algorithms
HASH_SCAN
SET GLOBAL SLAVE_ROWS_SEARCH_ALGORITHMS='INDEX_SCAN';
SELECT @@global.slave_rows_search_algorithms;
@@global.slave_rows_search_algorithms
INDEX_SCAN
SET GLOBAL SLAVE_ROWS_SEARCH_ALGORITHMS='TABLE_SCAN,HASH_SCAN';
SELECT @@global.slave_rows_search_algorithms;
@@global.slave_rows_search_algorithms
TABLE_SCAN,HASH_SCAN
SET GLOBAL SLAVE_ROWS_SEARCH_ALGORITHMS='TABLE_SCAN,HASH_SCAN,INDEX_SCAN';
SELECT @@global.slave_rows_search_algorithms;
@@global.slave_rows_search_algorithms
TABLE_SCAN,INDEX_SCAN,HASH_SCAN
SET GLOBAL SLAVE_ROWS_SEARCH_ALGORITHMS='TABLE_SCAN,INDEX_SCAN';
SELECT @@global.slave_rows_search_algorithms;
@@global.slave_rows_search_algorithms
TABLE_SCAN,INDEX_SCAN
SET GLOBAL SLAVE_ROWS_SEARCH_ALGORITHMS='HASH_SCAN,INDEX_SCAN';
SELECT @@global.slave_rows_search_algorithms;
@@global.slave_rows_search_algorithms
INDEX_SCAN,HASH_SCAN
SET GLOBAL SLAVE_ROWS_SEARCH_ALGORITHMS='TABLE_5CAN';
ERROR 42000: Variable 'slave_rows_search_algorithms' can't be set to the value of 'TABLE_5CAN'
SELECT @@global.slave_rows_search_algorithms;
@@global.slave_rows_search_algorithms
INDEX_SCAN,HASH_SCAN
SET GLOBAL SLAVE_ROWS_SEARCH_ALGORITHMS='';
ERROR 42000: Variable 'slave_rows_search_algorithms' can't be set to the value of ''
SELECT @@global.slave_rows_search_algorithms;
@@global.slave_rows_search_algorithms
INDEX_SCAN,HASH_SCAN
SET GLOBAL SLAVE_ROWS_SEARCH_ALGORITHMS='1';
ERROR 42000: Variable 'slave_rows_search_algorithms' can't be set to the value of '1'
SELECT @@global.slave_rows_search_algorithms;
@@global.slave_rows_search_algorithms
INDEX_SCAN,HASH_SCAN
SET GLOBAL SLAVE_ROWS_SEARCH_ALGORITHMS=NULL;
ERROR 42000: Variable 'slave_rows_search_algorithms' can't be set to the value of 'NULL'
SELECT @@global.slave_rows_search_algorithms;
@@global.slave_rows_search_algorithms
INDEX_SCAN,HASH_SCAN
set global slave_rows_search_algorithms = @saved_slave_rows_search_algorithms;
SELECT @@global.slave_rows_search_algorithms;
@@global.slave_rows_search_algorithms
TABLE_SCAN,INDEX_SCAN
|