Skip to content

Commit

Permalink
Merge branch 'main' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
RazvanLiviuVarzaru committed Dec 10, 2024
2 parents 4c08e43 + 28f7e77 commit e8d78e5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/rpm-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@ sudo mariadb -e "drop database if exists test; \
insert into t values (1); \
select * from t; \
drop table t;"
if echo "$pkg_list" | grep -qi columnstore; then
# Columnstore tests are currently skipped for Fedora (see MCOL-5825) or Columnstore packages were not found

if [[ $ID != "fedora" ]] && ( echo "$pkg_list" | grep -qi "columnstore" ) ; then
sudo mariadb --verbose -e "create database cs; \
use cs; \
create table cs.t_columnstore (a int, b char(8)) engine=Columnstore; \
Expand Down

0 comments on commit e8d78e5

Please sign in to comment.