You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by fr...@apache.org on 2019/05/12 11:55:42 UTC

[calcite-avatica-go] branch master updated (0429b4b -> c4e2727)

This is an automated email from the ASF dual-hosted git repository.

francischuang pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/calcite-avatica-go.git.


    omit 0429b4b  [CALCITE-3044] Test against Avatica-1.15.0 and remove simplify alpine dependencies
     new c4e2727  [CALCITE-3044] Test against Avatica-1.15.0 and simplify alpine dependencies

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (0429b4b)
            \
             N -- N -- N   refs/heads/master (c4e2727)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:


[calcite-avatica-go] 01/01: [CALCITE-3044] Test against Avatica-1.15.0 and simplify alpine dependencies

Posted by fr...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

francischuang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/calcite-avatica-go.git

commit c4e2727d37815d2997dad45a0b7aa1bd5dd96529
Author: Francis Chuang <fr...@apache.org>
AuthorDate: Sun May 12 21:44:56 2019 +1000

    [CALCITE-3044] Test against Avatica-1.15.0 and simplify alpine dependencies
---
 .travis.yml        | 3 ++-
 docker-compose.yml | 4 ++--
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index ee041a1..34fcf86 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -46,7 +46,8 @@ env:
     - AVATICA_FLAVOR=HSQLDB IMAGE=f21global/calcite-avatica:1.12.0-hypersql GO111MODULE=on
     - AVATICA_FLAVOR=HSQLDB IMAGE=apache/calcite-avatica-hypersql:1.13.0 GO111MODULE=on
     - AVATICA_FLAVOR=HSQLDB IMAGE=apache/calcite-avatica-hypersql:1.14.0 GO111MODULE=on
-    - AVATICA_FLAVOR=HSQLDB IMAGE=apache/calcite-avatica-hypersql:1.14.0 GO111MODULE=off
+    - AVATICA_FLAVOR=HSQLDB IMAGE=apache/calcite-avatica-hypersql:1.15.0 GO111MODULE=on
+    - AVATICA_FLAVOR=HSQLDB IMAGE=apache/calcite-avatica-hypersql:1.15.0 GO111MODULE=off
 
 before_install:
   - if [ $GO111MODULE == "off" ]; then
diff --git a/docker-compose.yml b/docker-compose.yml
index 7b38f4c..e0bda70 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -19,12 +19,12 @@ services:
     image: boostport/hbase-phoenix-all-in-one:2.0-5.0
 
   hsqldb:
-    image: apache/calcite-avatica-hypersql:1.14.0
+    image: apache/calcite-avatica-hypersql:1.15.0
     command: -u jdbc:hsqldb:mem:public
 
   test:
     image: golang:1.12-alpine
-    command: sh -c "apk --no-cache --no-progress add build-base git; export AVATICA_FLAVOR=HSQLDB && go test -v ./...; export AVATICA_FLAVOR=PHOENIX && go test -v ./..."
+    command: sh -c "apk --no-cache --no-progress add gcc git musl-dev; export AVATICA_FLAVOR=HSQLDB && go test -v ./...; export AVATICA_FLAVOR=PHOENIX && go test -v ./..."
     working_dir: /source
     environment:
       PHOENIX_HOST: http://phoenix:8765