Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
321189c7
Commit
321189c7
authored
May 22, 2009
by
Patrick Crews
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
6c31d59b
17dba81f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
6 deletions
+3
-6
mysql-test/r/func_compress.result
mysql-test/r/func_compress.result
+0
-6
mysql-test/t/func_compress.test
mysql-test/t/func_compress.test
+3
-0
No files found.
mysql-test/r/func_compress.result
View file @
321189c7
...
...
@@ -123,12 +123,6 @@ UNCOMPRESS(c1) UNCOMPRESSED_LENGTH(c1)
NULL NULL
NULL NULL
NULL 825307441
Warnings:
Error 1259 ZLIB: Input data corrupted
Error 1259 ZLIB: Input data corrupted
Error 1259 ZLIB: Input data corrupted
Error 1259 ZLIB: Input data corrupted
Error 1256 Uncompressed data size too large; the maximum size is 104857600 (probably, length of uncompressed data was corrupted)
EXPLAIN EXTENDED SELECT * FROM (SELECT UNCOMPRESSED_LENGTH(c1) FROM t1) AS s;
DROP TABLE t1;
End of 5.0 tests
mysql-test/t/func_compress.test
View file @
321189c7
...
...
@@ -90,7 +90,10 @@ drop table t1;
CREATE
TABLE
t1
(
c1
INT
);
INSERT
INTO
t1
VALUES
(
1
),
(
1111
),
(
11111
);
# Disable warnings to avoid dependency on max_allowed_packet value
--
disable_warnings
SELECT
UNCOMPRESS
(
c1
),
UNCOMPRESSED_LENGTH
(
c1
)
FROM
t1
;
--
enable_warnings
# We do not need the results, just make sure there are no valgrind errors
--
disable_result_log
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment