Skip to content

Instantly share code, notes, and snippets.

@rdsedmundo
Created February 14, 2024 08:24
Show Gist options
  • Save rdsedmundo/4c83b7acae83ca6dadbe77507733d63c to your computer and use it in GitHub Desktop.
Save rdsedmundo/4c83b7acae83ca6dadbe77507733d63c to your computer and use it in GitHub Desktop.
Datagrip bug
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