fix: unexpected results when embedding the same table twice
This commit is contained in:
committed by
Wolfgang Walther
parent
ea08a4d767
commit
5f6f7dca44
Vendored
+13
@@ -970,3 +970,16 @@ VALUES (1, 'stratosphere', 1),
|
||||
(2, 'ants from up above',2),
|
||||
(3, 'vespertine',3),
|
||||
(4, 'contemporary movement', 1);
|
||||
|
||||
TRUNCATE TABLE places CASCADE;
|
||||
INSERT INTO places (name)
|
||||
VALUES ('Lake'), ('Mountain'), ('Beach');
|
||||
|
||||
TRUNCATE TABLE visits CASCADE;
|
||||
INSERT INTO visits (place_id, start_time, end_time, visit_type)
|
||||
VALUES (1, '2025-01-01 10:00','2025-01-01 11:00', 'vacation'),
|
||||
(1, '2025-01-01 15:00','2025-01-01 16:00', 'vacation'),
|
||||
(1, '2025-01-01 20:00', '2025-01-01 21:00', 'work'),
|
||||
(2, '2024-11-01 09:00','2024-11-01 10:00', 'vacation'),
|
||||
(3, '2024-12-02 13:00','2024-12-02 14:00', 'vacation'),
|
||||
(1, '2023-01-02 20:00','2023-01-01 21:00', 'work');
|
||||
|
||||
Reference in New Issue
Block a user