-
Notifications
You must be signed in to change notification settings - Fork 22
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
odbc_fdw -> apache drill #35
Comments
I have made some advances: The odbc_fdw extension is well installed, because I have installed postgresql odbc, and created a foreign table from a remote postgresql database. -> this works well with postgres. My odbc configuration for apache drill is ok too, because I am able to access to it with libreofficeBase though ODBC. However, I am still getting this error with odbc_fdw: /etc/odbc.ini
/etc/odbcinst.ini
/etc/mapr.drillodbc.ini
Postgresql query
I still get this error:
Why odbc works with libreofficeBase, and not odbc_fdw, this is the question Notice I use unixODBC V2.2.14 |
I have added to /var/lib/postgresql/.bash_profile:
The unixodbc command isql 'Drill' works with the postgres user. But again, odbc_fdw has this driver error. Is it possible that the database ignore the configs below ? |
Having the same issue with an Impala connection, |
I had the same issue, and it was due to not fully qualifying the queries in the wrapper definition. I had to use database.schema.table . That solved it for me. |
Hi,
I have a working odbc apache-drill connection (cf https://drill.apache.org/docs/odbc-configuration-reference/ ). I am able to connect to my remote drill and query it.
Example: schema=hbase and table =hbase_t_random
SELECT * FROM
hbase
.hbase_t_random
works from my odbc client.
I have compiled and installed odbc_fdw. Those steps work :
But when importing the table :
I get this error:
Here is my odbc.ini
Can anybody help (where are the logs, how to debug, what obvious parameters I forgot)
Thanks
ubuntu 14.04
postgresql 9.5.3
apache drill 1.6.0
The text was updated successfully, but these errors were encountered: