1LZ4_DECOMPRESS(1) MySQL Database System LZ4_DECOMPRESS(1)
2
3
4
6 lz4_decompress - decompress mysqlpump LZ4-compressed output
7
9 lz4_decompress input_file output_file
10
12 The lz4_decompress utility decompresses mysqlpump output that was
13 created using LZ4 compression.
14
15 Note
16 lz4_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_LZ4=system option,
22 lz4_decompress is not built. In this case, the system lz4 command
23 can be used instead.
24
25 Invoke lz4_decompress like this:
26
27 lz4_decompress input_file output_file
28
29 Example:
30
31 mysqlpump --compress-output=LZ4 > dump.lz4
32 lz4_decompress dump.lz4 dump.txt
33
34 To see a help message, invoke lz4_decompress with no arguments.
35
36 To decompress mysqlpump ZLIB-compressed output, use zlib_decompress.
37 See zlib_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 LZ4_DECOMPRESS(1)