-
Notifications
You must be signed in to change notification settings - Fork 128
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
JSONB instead of JSON #17
Comments
Yes initially wanted to use JSONB but was only supported after Postgres 9.4. |
Can you close this? Quickly scanned this the other day and somehow thought it hadn't been implemented yet and it has. Thanks so much for this lib, has significantly improved my work flow! Awesome work! 👍 |
Used the Linux wget link: wget -O pgfutter https://github.com/lukasmartinelli/pgfutter/releases/download/v1.0/pgfutter_linux_amd64 And realised this version does not have jsonb support. Should download links be updated to latest? Looks like you can here: https://help.github.com/articles/linking-to-releases/ with
Seems as though that is only if a release has been tagged and then only links to the html version and not package.. just trying to get the latest version with all the goodies. :) Downloading go to use Go get.. which looks like links directly to the repo. Zero experience with Go, should be interesting. Cheers |
Using |
The version just was not up to par with master (I am a bit slow with releases). I think I am doing something similar to semver (any suggestions?). I had v0.* but then switched to v1.* when I thought the API is stable and now doing minor upgrades ( |
Would recommend following semver as close as possible, it is well understood and documented. The three biggest Go projects that I am aware of use semver as well CoreOS, Kubernetes, and Docker. Yeah the bump to 1.0.0 makes sense when you have a stable API. Think their summary is on point:
|
Hi,
Would it be possible/make sense to allow JSONB instead of JSON as the data column type ?
Currently I end up changing the data column to JSONB after its imported which takes time.
Thanks for the a great project btw.
Regards
The text was updated successfully, but these errors were encountered: