Skip to content

Google Cloud Spanner JDBC Driver version 0.15

Compare
Choose a tag to compare
@olavloite olavloite released this 25 Sep 20:48
· 678 commits to master since this release
  • Added support for insert statements with 'ON DUPLICATE KEY UPDATE'
  • Added support for bulk insert statements:
    INSERT INTO TABLE
    (COL1, COL2, COL3)
    SELECT SOMECOL1, SOMECOL2, SOMECOL3
    FROM OTHER_TABLE
    WHERE SOMECOL1 LIKE ?
  • Bug fix: Primary key had to be specified in definition order in DELETE-statements. Now they can be specified in any order.