1ZLIB_DECOMPRESS(1) MySQL Database System ZLIB_DECOMPRESS(1)
2
3
4
6 zlib_decompress - decompress mysqlpump ZLIB-compressed output
7
9 zlib_decompress input_file output_file
10
12 The zlib_decompress utility decompresses mysqlpump output that was
13 created using ZLIB compression.
14
15 Note
16 zlib_decompress is deprecated as of MySQL 8.0.34; expect it to be
17 removed in a future version of MySQL. This is because the
18 associated mysqlpump utility is deprecated as of MySQL 8.0.34.
19
20 Note
21 If MySQL was configured with the -DWITH_ZLIB=system option,
22 zlib_decompress is not built. In this case, the system openssl zlib
23 command can be used instead.
24
25 Invoke zlib_decompress like this:
26
27 zlib_decompress input_file output_file
28
29 Example:
30
31 mysqlpump --compress-output=ZLIB > dump.zlib
32 zlib_decompress dump.zlib dump.txt
33
34 To see a help message, invoke zlib_decompress with no arguments.
35
36 To decompress mysqlpump LZ4-compressed output, use lz4_decompress. See
37 lz4_decompress(1).
38
40 Copyright © 1997, 2023, Oracle and/or its affiliates.
41
42 This documentation is free software; you can redistribute it and/or
43 modify it only under the terms of the GNU General Public License as
44 published by the Free Software Foundation; version 2 of the License.
45
46 This documentation is distributed in the hope that it will be useful,
47 but WITHOUT ANY WARRANTY; without even the implied warranty of
48 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
49 General Public License for more details.
50
51 You should have received a copy of the GNU General Public License along
52 with the program; if not, write to the Free Software Foundation, Inc.,
53 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see
54 http://www.gnu.org/licenses/.
55
56
58 For more information, please refer to the MySQL Reference Manual, which
59 may already be installed locally and which is also available online at
60 http://dev.mysql.com/doc/.
61
63 Oracle Corporation (http://dev.mysql.com/).
64
65
66
67MySQL 8.0 08/31/2023 ZLIB_DECOMPRESS(1)