mirror of
https://github.com/MariaDB/server.git
synced 2026-05-03 13:45:34 +02:00
Automerge.
This commit is contained in:
commit
958e896d8f
3 changed files with 47 additions and 1 deletions
|
|
@ -88,4 +88,21 @@ select *, uncompress(a) from t1;
|
|||
select *, uncompress(a), uncompress(a) is null from t1;
|
||||
drop table t1;
|
||||
|
||||
#
|
||||
# Bug #44796: valgrind: too many my_longlong10_to_str_8bit warnings after
|
||||
# uncompressed_length
|
||||
#
|
||||
|
||||
CREATE TABLE t1 (c1 INT);
|
||||
INSERT INTO t1 VALUES (1), (1111), (11111);
|
||||
|
||||
SELECT UNCOMPRESS(c1), UNCOMPRESSED_LENGTH(c1) FROM t1;
|
||||
|
||||
# We do not need the results, just make sure there are no valgrind errors
|
||||
--disable_result_log
|
||||
EXPLAIN EXTENDED SELECT * FROM (SELECT UNCOMPRESSED_LENGTH(c1) FROM t1) AS s;
|
||||
--enable_result_log
|
||||
|
||||
DROP TABLE t1;
|
||||
|
||||
--echo End of 5.0 tests
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue