[v11.0.x] MySQL: snapshot tests (#86184)

MySQL: snapshot tests (#84846)

mysql: add snapshot tests
(cherry picked from commit 3b7ee3a56b)

Co-authored-by: Gábor Farkas <gabor.farkas@gmail.com>
This commit is contained in:
grafana-delivery-bot[bot]
2024-04-15 16:28:08 +01:00
committed by GitHub
parent bce6d445e9
commit 708ba6f3ac
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');