[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:
committed by
GitHub
parent
bce6d445e9
commit
708ba6f3ac
+12
@@ -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');
|
||||
Reference in New Issue
Block a user