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
+10
View File
@@ -0,0 +1,10 @@
-- SELECT * FROM tbl WHERE false
CREATE TABLE tbl (
`time` timestamp NOT NULL,
v1 double precision,
v2 double precision
);
INSERT INTO tbl (`time`, v1, v2) VALUES
('2023-12-24 14:30:03+00:00', 10, 110),
('2023-12-24 14:31:03+00:00', 20, 120);