diff options
author | Monty <monty@mariadb.org> | 2020-08-13 20:17:00 +0300 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2021-05-19 22:27:29 +0200 |
commit | 5c7d243b29257fe02edaea42730893d4d185ced5 (patch) | |
tree | 06cf893181aba06ec9af8a29a3440f79e23277ec /mysql-test/main/mysqlcheck.result | |
parent | 8dd6ad573ce3c0bc72e2ec47f9833f6dc774cecf (diff) | |
download | mariadb-git-5c7d243b29257fe02edaea42730893d4d185ced5.tar.gz |
Add support for minimum field width for strings to my_vsnprintf()
This patch adds support for right aligned strings and numbers.
Left alignment is left as an exercise for anyone needing it.
MDEV-25612 "Assertion `to <= end' failed in process_args" fixed.
(Was caused by the original version of this patch)
Diffstat (limited to 'mysql-test/main/mysqlcheck.result')
-rw-r--r-- | mysql-test/main/mysqlcheck.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/main/mysqlcheck.result b/mysql-test/main/mysqlcheck.result index 59eba2ebbce..4955bd0292a 100644 --- a/mysql-test/main/mysqlcheck.result +++ b/mysql-test/main/mysqlcheck.result @@ -429,7 +429,7 @@ create table mysqltest1.t1 (a int) engine=myisam; create table t2 (a int); check table mysqltest1.t1; Table Op Msg_type Msg_text -mysqltest1.t1 check warning Size of datafile is: 4 Should be: 0 +mysqltest1.t1 check warning Size of datafile is: 4 Should be: 0 mysqltest1.t1 check error got error: 0 when reading datafile at record: 0 mysqltest1.t1 check error Corrupt mtr.global_suppressions Table is already up to date @@ -464,7 +464,7 @@ mysql.time_zone_transition_type Table is already up to date mysql.transaction_registry OK mysqltest1.t1 warning : Table is marked as crashed -warning : Size of datafile is: 4 Should be: 0 +warning : Size of datafile is: 4 Should be: 0 error : got error: 0 when reading datafile at record: 0 error : Corrupt sys.sys_config Table is already up to date |