You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Deb: Sync build and runtime dependencies from downstream to upstream
- Go back to using $MAJOR_VER instead of hard-coded version strings where
possible.
- Default to 'auto' in NUMJOBS instead of just 1. Will make mysql-test-run
faster.
- Unify autopkgtest with latest version in Debian, use eatmydata to make
mysql-test-run faster.
- Salsa-CI: Remove obsolete 'artifacts: true' as that is the default value.
- Salsa-CI: Clean away obsolete temporary fixes.
- Salsa-CI: Unify with salsa-ci.yml in Debian, including test upgrades
from Bullseye to Debian unstable.
service mysql status || service mariadb status # Early MariaDB 10.5 only had 'mariadb'
150
154
mysql --skip-column-names -e "select @@version, @@version_comment" # Show version
151
-
echo 'SHOW DATABASES;' | mysql # List databases before upgrade
152
-
mysql -e "SELECT Host, User, plugin,authentication_string FROM user;" mysql
153
-
mysql -e "SELECT * FROM plugin;" mysql
155
+
mysql --table -e 'SHOW DATABASES;' # List databases before upgrade
156
+
mysql --table -e "SELECT host,user,plugin,authentication_string FROM user;" mysql
157
+
mysql --table -e "SELECT * FROM plugin;" mysql
158
+
mysql --table -e "SHOW PLUGINS;" mysql
154
159
155
160
.test-enable-sid-repos: &test-enable-sid-repos |
156
161
# Replace any old repos with just Sid
@@ -172,10 +177,12 @@ blhc:
172
177
cp -ra /etc/mysql debug/etc-mysql
173
178
cp -ra /var/log/mysql debug/var-log-mysql
174
179
mariadb --skip-column-names -e "select @@version, @@version_comment" # Show version
175
-
echo 'SHOW DATABASES;' | mariadb # List databases
176
-
mariadb -e "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; drop database test;" # Test that InnoDB works
177
-
mariadb -e "SELECT Host, User, plugin,authentication_string FROM user;" mysql
178
-
mariadb -e "SELECT * FROM plugin;" mysql
180
+
mariadb --table -e 'SHOW DATABASES;' # List databases
181
+
mariadb --table -e "SELECT host,user,plugin,authentication_string FROM user;" mysql
182
+
mariadb --table -e "SELECT * FROM plugin;" mysql
183
+
mariadb --table -e "SHOW PLUGINS;" mysql
184
+
# Test that InnoDB works and that command 'mysql' is also still usable
185
+
mysql -e "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; DROP DATABASE test;"
179
186
180
187
.test-verify-libs: &test-verify-libs
181
188
# Don't use a collapsed command as Gitlab-CI would hide each command from the output
0 commit comments