You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by st...@apache.org on 2022/03/21 01:33:31 UTC

[impala] branch branch-3.4.1 updated (5ecba2d -> b114369)

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

stigahuang pushed a change to branch branch-3.4.1
in repository https://gitbox.apache.org/repos/asf/impala.git.


    from 5ecba2d  IMPALA-10426: Fix crash when inserting invalid timestamps
     new 0d55beb  Depend on master branch of hadoop-lzo to avoid download issues
     new b114369  Prepare 3.4.1 RC1

The 2 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:
 bin/bootstrap_system.sh | 2 +-
 bin/save-version.sh     | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

[impala] 01/02: Depend on master branch of hadoop-lzo to avoid download issues

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

stigahuang pushed a commit to branch branch-3.4.1
in repository https://gitbox.apache.org/repos/asf/impala.git

commit 0d55beb121ba2fdf2c2ec68d1f26c5a8de028803
Author: stiga-huang <hu...@gmail.com>
AuthorDate: Tue Mar 15 09:22:45 2022 +0800

    Depend on master branch of hadoop-lzo to avoid download issues
---
 bin/bootstrap_system.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/bootstrap_system.sh b/bin/bootstrap_system.sh
index a6148d7..6b8fcf8 100755
--- a/bin/bootstrap_system.sh
+++ b/bin/bootstrap_system.sh
@@ -428,7 +428,7 @@ echo ">>> Checking out and building hadoop-lzo"
 : ${HADOOP_LZO_HOME:="${IMPALA_HOME}/../hadoop-lzo"}
 if ! [[ -d "$HADOOP_LZO_HOME" ]]
 then
-  git clone https://github.com/cloudera/hadoop-lzo.git "$HADOOP_LZO_HOME"
+  git clone -b master https://github.com/cloudera/hadoop-lzo.git "$HADOOP_LZO_HOME"
 fi
 cd "$HADOOP_LZO_HOME"
 time -p ant package

[impala] 02/02: Prepare 3.4.1 RC1

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

stigahuang pushed a commit to branch branch-3.4.1
in repository https://gitbox.apache.org/repos/asf/impala.git

commit b11436989248f1a8bee16da59fbe033dece374de
Author: stiga-huang <hu...@gmail.com>
AuthorDate: Tue Mar 15 19:51:15 2022 +0800

    Prepare 3.4.1 RC1
---
 bin/save-version.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/save-version.sh b/bin/save-version.sh
index 4d24395..c94df07 100755
--- a/bin/save-version.sh
+++ b/bin/save-version.sh
@@ -21,8 +21,8 @@
 # Note: for internal (aka pre-release) versions, the version should have
 # "-INTERNAL" appended. Parts of the code will look for this to distinguish
 # between released and internal versions.
-VERSION=3.4.0-RELEASE
-GIT_HASH=$(git rev-parse HEAD 2> /dev/null)
+VERSION=3.4.1-RELEASE
+GIT_HASH=0d55beb121ba2fdf2c2ec68d1f26c5a8de028803
 if [ -z $GIT_HASH ]
 then
   GIT_HASH="Could not obtain git hash"