Skip to content

Commit d5136c7

Browse files
MDBF-1046 - stream 10 disable CS tests during Install
Workaround for ``` ERROR 2026 (HY000) at line 1: TLS/SSL error: unexpected eof while reading ``` during ``` + sudo mariadb --verbose -e 'create database cs; use cs; create table cs.t_columnstore (a int, b char(8)) engine=Columnstore; insert into cs.t_columnstore select seq, concat('\''val'\'',seq) from seq_1_to_10; select * from cs.t_columnstore' ``` until https://jira.mariadb.org/browse/MCOL-5825 is sorted out.
1 parent ac79d9f commit d5136c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/rpm-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ sudo mariadb -e "drop database if exists test; \
8484
drop table t;"
8585
# Columnstore tests are currently skipped for Fedora (see MCOL-5825) or Columnstore packages were not found
8686

87-
if [[ $ID != "fedora" ]] && ( echo "$pkg_list" | grep -qi "columnstore" ) ; then
87+
if [[ $ID != "fedora" && "${ID}${VERSION_ID}" != "centos10" ]] && ( echo "$pkg_list" | grep -qi "columnstore" ) ; then
8888
sudo mariadb --verbose -e "create database cs; \
8989
use cs; \
9090
create table cs.t_columnstore (a int, b char(8)) engine=Columnstore; \

0 commit comments

Comments
 (0)