-
-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nix: UTC by default for postgrest-with-postgresql #2666
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What does adding this do?
Or did you want to use
$PGTZ
below in the-c timezone=
addition?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was mostly adding it for documentation purposes. PGTZ is pg env var: https://www.postgresql.org/docs/current/libpq-envars.html
So I can do:
And get the correct time for my timezone.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It does override the
-c timezone
, I tested it.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hm. Doesn't that mean that at least one of the two is redundant, then?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hm, I don't see it that way. PGTZ is for overriding and
-c timezone=utc
is for the default.The problem on #2523 (comment) was that running
postgrest-test-spec
failed locally and not on CI and that was confusing.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Open to hear better alternatives, not sure what would be the issue with the current setup though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But it doesn't do it. If you remove the
ARG_USE_ENV
line - it will still override, when you explicitly set PGTZ before callingpostgrest-with-postgresql-xx
.So this line is just unused in it's current form, especially the default value you give on that line, too. Try changing the default in the
ARG_USE_ENV
line - it doesn't have any effect. Or in other words, you currently have two default values: One in the ARG_USE_ENV, one in the-c timezone=
. Obviously, only one default can actually "work", right?There's two ways to actually use PGTZ in the nix script, too:
Doing it this way, you don't need the
-c timezone=utc
anymore. PGTZ will be used from the outside - and if not set, the defaultutc
will be used as given in theARG_USE_ENV
line. PGTZ will then be passed to any client that uses the temporary database.I think this is the cleanest approach.
The other way would be like this:
This would make the the default for PGTZ only available within the current script - but then set it as the default via server-side configuration.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, cool. Fixed according to approach 1 on #2674