MySQL: snapshot tests (#84846)

mysql: add snapshot tests
This commit is contained in:
Gábor Farkas
2024-03-26 10:24:33 +01:00
committed by GitHub
parent c835022861
commit 3b7ee3a56b
41 changed files with 3006 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
-- SELECT * FROM tbl WHERE false
CREATE TABLE tbl (
`time` timestamp NOT NULL,
v double precision,
c text
);
INSERT INTO tbl (`time`, v, c) VALUES
('2023-12-24 14:30:03+00:00', 10, 'a'),
('2023-12-24 14:30:03+00:00', 110, 'b'),
('2023-12-24 14:31:03+00:00', 20, 'a'),
('2023-12-24 14:31:03+00:00', 120, 'b');