Skip to content

Commit

Permalink
MDBF-818 Restore rpm-install Columnstore Engine test fixes from old BB
Browse files Browse the repository at this point in the history
  • Loading branch information
vl-radu committed Nov 18, 2024
1 parent 671a115 commit d7eb898
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 @@ -75,7 +75,7 @@ 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 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 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"
sudo systemctl restart mariadb
sudo mariadb --verbose -e "select * from cs.t_columnstore; update cs.t_columnstore set b = 'updated'"
sudo systemctl restart mariadb-columnstore
Expand Down

0 comments on commit d7eb898

Please sign in to comment.