test stuff

This commit is contained in:
2019-09-23 18:38:02 +02:00
parent f27344a396
commit 2e304d6934
5 changed files with 94 additions and 0 deletions

13
test/bs.sql Normal file
View File

@ -0,0 +1,13 @@
create user 'testuser'@'%' identified via pam using 'mariadb';
create database testdb;
grant all privileges on testdb.* to 'testuser'@'%';
flush privileges;
use testdb;
create table testtable (
id int primary key auto_increment,
bla varchar(32)
);
insert into testtable (bla) values('bla1');
insert into testtable (bla) values('bla2');
insert into testtable (bla) values('bla3');