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

westonpace pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new dcde920f24 ARROW-16305: [C++] Missed reference to ARROW_ENGINE during 
the rename
dcde920f24 is described below

commit dcde920f24673e917b2893129a0bf3304c470047
Author: Weston Pace <[email protected]>
AuthorDate: Sun Apr 24 22:51:21 2022 -1000

    ARROW-16305: [C++] Missed reference to ARROW_ENGINE during the rename
    
    I had not thought to check .travis.yml.  The errors appeared to be 
completely unrelated and I'm still not entirely sure why we receive them.  
However, in the past, we were not building parquet on the s390x build.  With 
ARROW-16158 we accidentally enabled parquet on this build.  This change should 
disable `ARROW_SUBSTRAIT` (and transitively, `ARROW_PARQUET`) so that the 
behavior is the same as it was before.
    
    Closes #12979 from westonpace/bugfix/MINOR--missed-ref-to-arrow-engine
    
    Authored-by: Weston Pace <[email protected]>
    Signed-off-by: Weston Pace <[email protected]>
---
 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 226d427390..a2ce0af63b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -99,7 +99,7 @@ jobs:
           -e ARROW_GCS=OFF
           -e ARROW_MIMALLOC=OFF
           -e ARROW_ORC=OFF
-          -e ARROW_ENGINE=OFF
+          -e ARROW_SUBSTRAIT=OFF
           -e ARROW_PARQUET=OFF
           -e ARROW_S3=OFF
           -e CMAKE_UNITY_BUILD=ON

Reply via email to