Skip to content

Commit 4be5d7c

Browse files
vl-raduRazvanLiviuVarzaru
authored andcommitted
MDBF-818 Restore rpm-install Columnstore Engine test fixes from old BB
1 parent 3f53f52 commit 4be5d7c

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
@@ -75,7 +75,7 @@ esac
7575

7676
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;'
7777
if echo "$pkg_list" | grep -qi columnstore; then
78-
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"
78+
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"
7979
sudo systemctl restart mariadb
8080
sudo mariadb --verbose -e "select * from cs.t_columnstore; update cs.t_columnstore set b = 'updated'"
8181
sudo systemctl restart mariadb-columnstore

0 commit comments

Comments
 (0)