[wip] add run tests

This commit is contained in:
Simon Vieille 2024-03-20 14:10:02 +01:00
commit a5fc2071da
Signed by: deblan
GPG key ID: 579388D585F70417
3 changed files with 65 additions and 4 deletions

25
tests/mysql_data.sql Normal file
View file

@ -0,0 +1,25 @@
SET NAMES utf8;
SET time_zone = '+00:00';
SET foreign_key_checks = 0;
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
SET NAMES utf8mb4;
DROP TABLE IF EXISTS `table_truncate1`;
CREATE TABLE `table_truncate1` (
`id` int(11) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
DROP TABLE IF EXISTS `table_truncate2`;
CREATE TABLE `table_truncate2` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`delete_me` tinyint(4) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
INSERT INTO `table_truncate2` (`id`, `delete_me`) VALUES
(1, 1),
(2, 1),
(3, 0);