summaryrefslogtreecommitdiffstats
path: root/storage/rocksdb/mysql-test/rocksdb_sys_vars/t/rocksdb_tmpdir_basic.test
blob: 8865914dd18abc83230f222fda2ed12a55b174f1 (plain)
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
--source include/have_rocksdb.inc

SET @start_global_value = @@global.rocksdb_tmpdir;
SELECT @start_global_value;

#
# exists as global and session
#
select @@session.rocksdb_tmpdir;

show global variables like 'rocksdb_tmpdir';
show session variables like 'rocksdb_tmpdir';

select * from information_schema.global_variables where variable_name='rocksdb_tmpdir';
select * from information_schema.session_variables where variable_name='rocksdb_tmpdir';

#
# Show that it is writable
#

set global rocksdb_tmpdir='value';
set session rocksdb_tmpdir='value';

#
# incorrect types
#
--error ER_WRONG_TYPE_FOR_VAR
set global rocksdb_tmpdir=1.1;
--error ER_WRONG_TYPE_FOR_VAR
set global rocksdb_tmpdir=1e1;

#
# Cleanup
#

SET @@global.rocksdb_tmpdir = @start_global_value;
SELECT @@global.rocksdb_tmpdir;