-
Notifications
You must be signed in to change notification settings - Fork 41
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
ParseInt error when scanning table #22
Comments
Hit by it too. |
I will try to get that fixed asap. I suspect that some of the sql query needs some adjustment as the Go Sql lib cannot handle the conversion. |
It seems like the problem come from SUM used for the database size. SUM of bigint return a numeric type. I don't think that we will support db above int64 size
I now cat the result to bigint so it should solve the problem. thanks |
Unfortunately, the problem persists:
The database is pretty small, like 300MB. I'm using Postgresql 9.4.5 on OSX. |
I will publish a verbose mode later tonight, I realize that I added the cast on the wrong db query. |
Getting same error on Mac OSX Postgres 9.4.4 2016/01/06 13:52:21 Starting Pome 0.1.1 |
Same issue using the latest Go and Pome on Ubuntu 14.04 (64-bit). |
I'm getting similar, with |
The fix works for me, thanks. ✨ |
Great. Thanks for testing it. I should have been more careful about the types of some of the SQL query. |
Using version 804786e
The text was updated successfully, but these errors were encountered: