-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is an implementation of the PostgreSQL TIME type, which represents time of day (no date). We store this as an int64 representing microseconds since midnight. Note that this commit does not attempt to support any new time formats beyond what we already support in the time portion of TIMESTAMP. This means that many formats which Postgres accepts (`04:05`, `040506`, `04:05 PM`, `allballs`) are not yet handled. We also do not support TIME WITH TIME ZONE, which the Postgres docs describe as having "questionable usefulness."
- Loading branch information
1 parent
f03d83e
commit 45d9dab
Showing
48 changed files
with
1,451 additions
and
224 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Oops, something went wrong.