summaryrefslogtreecommitdiff
path: root/storage/mroonga/mysql-test/mroonga/storage/r/variable_database_path_prefix.result
blob: beca93b62ad06b5c932bc708d226d18265996260 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
SET GLOBAL mroonga_database_path_prefix = "test/mroonga.data/";
SHOW GLOBAL VARIABLES LIKE 'mroonga_database_path_prefix';
Variable_name	Value
mroonga_database_path_prefix	test/mroonga.data/
CREATE DATABASE clean_test;
USE clean_test;
CREATE TABLE counts (
id INT PRIMARY KEY AUTO_INCREMENT
);
INSERT INTO counts VALUES (NULL);
SELECT * FROM counts;
id
1
DROP TABLE counts;
DROP DATABASE clean_test;
SET GLOBAL mroonga_database_path_prefix = NULL;
USE test;