-
Notifications
You must be signed in to change notification settings - Fork 19
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
JDBC.load() hangs on load from Netezza data source #52
Comments
I think the issue is this:
And it is this function which hangs. Whereas this is able to print all the data: for i in rows(csr)
println(i)
end |
Yeah, I was about to say, can you just use the low level functions
|
Yes, I can, that works, I just need to figure out how to get the output into DataFrames form now |
The below seems to work for my needs: df_schema = Tables.schema(src)
df = DataFrame(collect(df_schema.types), collect(df_schema.names))
for i in rows(csr)
push!(df, i)
end |
I'm unable to get the results from a sql query on a netezza database to load, the call simply hangs until the julia process is ended.
It's not clear what the problem is because there are no warnings or errors.
To reproduce:
The final
JDBC.load
call above never returns a result.Is there something I can do to diagnose the issue?
Package versions:
The text was updated successfully, but these errors were encountered: