Created
February 14, 2024 08:24
-
-
Save rdsedmundo/4c83b7acae83ca6dadbe77507733d63c to your computer and use it in GitHub Desktop.
Datagrip bug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DROP TABLE IF EXISTS datagrip_bug; | |
CREATE TABLE datagrip_bug | |
( | |
id UUID PRIMARY KEY, | |
name TEXT NOT NULL, | |
created_at TIMESTAMPTZ | |
); | |
INSERT INTO datagrip_bug (id, name) | |
VALUES ('53d49e34-82f8-4cee-952e-539e2afa5db3', 'test'); | |
INSERT INTO datagrip_bug (id, name) | |
VALUES ('e54cf4cc-46c0-4eed-bfa8-809c05103147', 'non-related-record'); | |
SELECT datagrip_bug.created_at | |
FROM datagrip_bug | |
WHERE id = '53d49e34-82f8-4cee-952e-539e2afa5db3'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment