spanner-jdbc icon indicating copy to clipboard operation
spanner-jdbc copied to clipboard

JDBC Driver for Google Cloud Spanner

Results 13 spanner-jdbc issues
Sort by recently updated
recently updated
newest added

Bumps [c3p0](https://github.com/swaldman/c3p0) from 0.9.5.2 to 0.9.5.4. Commits - [`c61c00b`](https://github.com/swaldman/c3p0/commit/c61c00b1f7e3d6cf23501cd02b429474e4d22c73) Fix one missing word in docs... - [`3aa4e5f`](https://github.com/swaldman/c3p0/commit/3aa4e5f2c57f231d609d9277770cb82d2e123bdd) Fix dangling \ in docs. - [`a93dc64`](https://github.com/swaldman/c3p0/commit/a93dc6497000efc821a2d40780231f98de11f3f9) Provide more accurate warning messages on...

dependencies

For a table with this schema: ``` CREATE TABLE geo_views ( city STRING(MAX) NOT NULL, client_id INT64 NOT NULL, date DATE NOT NULL, domain STRING(MAX) NOT NULL, url STRING(MAX) NOT...

I found another case where the parser blows up because of parens in the query. This time it is a `regexp_contains` value provided via a query parameter. The same query...

Hi Knut, I got a issue which happening when my application pulls message from pubsub (Spring boot start with Spanner-JDBC and cloud Pubsub). I assume that both Spanner and Pubsub...

When I tried the method DatabaseMetaData.getTables() (or getProcedures()), I always get back empty TABLE_NAME-columns (or PROCEDURE_NAME-columns). When I manually did the underlying query: ``` SELECT CASE WHEN TABLE_CATALOG='' THEN NULL...

When attempting to access an item of an array in a query using syntax that is accepted in interactive SQL console we get a parsing error from `nl.topicus.jdbc.shaded.net.sf.jsqlparser` ``` ERROR...

Spanner now supports DML statements server side. The JDBC driver should support sending DML statements to the server instead of processing these client side.

enhancement

I tried to use the driver with Scala Play Framework but to support the "evolutions" (aka "migrations") feature Play creates tables with DDL using types incompatible with Spanner's eg. ```...

enhancement

Hi @olavloite. I have this error. ```java SELECT IF(2 > 1, 'A', 'B') FROM notifications; ``` ```java Caused by: nl.topicus.jdbc.shaded.net.sf.jsqlparser.parser.ParseException: Encountered " "IF" "IF "" at line 1, column 8....

bug