Skip to content

Commit

Permalink
Fix CS testing, rpm are not pulled
Browse files Browse the repository at this point in the history
  • Loading branch information
fauust committed Sep 30, 2024
1 parent 688c1a5 commit 72f0530
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/rpm-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ case "$systemdCapability" in
esac

sudo mariadb -e 'drop database if exists test; create database test; use test; create table t(a int primary key) engine=innodb; insert into t values (1); select * from t; drop table t;'
if find rpms/*.rpm | grep -qi columnstore; then
if 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)); insert into cs.t_columnstore select seq, concat('val',seq) from seq_1_to_10; select * from cs.t_columnstore"
sudo systemctl restart mariadb
sudo mariadb --verbose -e "select * from cs.t_columnstore; update cs.t_columnstore set b = 'updated'"
Expand Down

0 comments on commit 72f0530

Please sign in to comment.