Skip to content

Commit

Permalink
Update BQ jdbc version (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
ismailsimsek authored Oct 28, 2021
1 parent 4f43ab4 commit 12e0ba8
Show file tree
Hide file tree
Showing 8 changed files with 2,632 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

run.sh
run*.sh
tests/test_bigquery.py
tests/resources/bigquery
tests/resources/bigquery.properties
Expand Down
4 changes: 2 additions & 2 deletions pyliquibase/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ def _cli(self):
import jnius_config
from pkg_resources import resource_filename

LIQUIBASE_CLASSPATH: list = [os.getcwd() + "/",
resource_filename(__package__, "liquibase/liquibase.jar"),
LIQUIBASE_CLASSPATH: list = [resource_filename(__package__, "liquibase/liquibase.jar"),
resource_filename(__package__, "liquibase/lib/*"),
resource_filename(__package__, "liquibase/lib/picocli*"),
resource_filename(__package__, "jdbc-drivers/*")]

if not jnius_config.vm_running:
jnius_config.add_classpath(*LIQUIBASE_CLASSPATH)
log.debug("classpath: %s" % jnius_config.get_classpath())
else:
log.warning("VM is already running, can't set classpath/options")
log.debug("VM started at" + jnius_config.vm_started_at)
Expand Down
295 changes: 295 additions & 0 deletions pyliquibase/jdbc-drivers/EULA.txt

Large diffs are not rendered by default.

Binary file modified pyliquibase/jdbc-drivers/GoogleBigQueryJDBC42.jar
Binary file not shown.
Binary file not shown.
Binary file modified pyliquibase/jdbc-drivers/liquibase-bigquery-4.5.1-SNAPSHOT.jar
Binary file not shown.
Loading

0 comments on commit 12e0ba8

Please sign in to comment.