[
https://issues.apache.org/jira/browse/BEAM-3773?focusedWorklogId=105946&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-105946
]
ASF GitHub Bot logged work on BEAM-3773:
----------------------------------------
Author: ASF GitHub Bot
Created on: 25/May/18 16:19
Start Date: 25/May/18 16:19
Worklog Time Spent: 10m
Work Description: apilloud commented on a change in pull request #5399:
[BEAM-3773] JDBC
URL: https://github.com/apache/beam/pull/5399#discussion_r190943972
##########
File path:
sdks/java/extensions/sql/src/test/java/org/apache/beam/sdk/extensions/sql/impl/interpreter/BeamSqlFnExecutorTestBase.java
##########
@@ -83,7 +81,7 @@ public static void prepare() {
.context(Contexts.EMPTY_CONTEXT)
.ruleSets(BeamRuleSets.getRuleSets())
.costFactory(null)
Review comment:
@vectorijk Tests passed for me in both maven and gradle, and is passing in
Jenkins. The issue you are seeing suggests that our JDBC driver is not being
registered in your environment. This should be automatically done by the
service file (`META-INF/services/java.sql.Driver`). Can you try manually
loading the driver at the start of the test? This line should do it:
```
Class.forName("org.apache.beam.sdk.extensions.sql.impl.JdbcDriver");
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 105946)
Time Spent: 7h 50m (was: 7h 40m)
> [SQL] Investigate JDBC interface for Beam SQL
> ---------------------------------------------
>
> Key: BEAM-3773
> URL: https://issues.apache.org/jira/browse/BEAM-3773
> Project: Beam
> Issue Type: Improvement
> Components: dsl-sql
> Reporter: Anton Kedin
> Assignee: Andrew Pilloud
> Priority: Major
> Time Spent: 7h 50m
> Remaining Estimate: 0h
>
> JDBC allows integration with a lot of third-party tools, e.g
> [Zeppelin|https://zeppelin.apache.org/docs/0.7.0/manual/interpreters.html],
> [sqlline|https://github.com/julianhyde/sqlline]. We should look into how
> feasible it is to implement a JDBC interface for Beam SQL
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)