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 If MySQL was configured with the -DWITH_LZ4=system option,
17 lz4_decompress is not built. In this case, the system lz4 command
18 can be used instead.
19
20 Invoke lz4_decompress like this:
21
22 shell> lz4_decompress input_file output_file
23
24 Example:
25
26 shell> mysqlpump --compress-output=LZ4 > dump.lz4
27 shell> lz4_decompress dump.lz4 dump.txt
28
29 To see a help message, invoke lz4_decompress with no arguments.
30
31 To decompress mysqlpump ZLIB-compressed output, use zlib_decompress.
32 See zlib_decompress(1).
33
35 Copyright © 1997, 2020, Oracle and/or its affiliates.
36
37 This documentation is free software; you can redistribute it and/or
38 modify it only under the terms of the GNU General Public License as
39 published by the Free Software Foundation; version 2 of the License.
40
41 This documentation is distributed in the hope that it will be useful,
42 but WITHOUT ANY WARRANTY; without even the implied warranty of
43 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
44 General Public License for more details.
45
46 You should have received a copy of the GNU General Public License along
47 with the program; if not, write to the Free Software Foundation, Inc.,
48 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or see
49 http://www.gnu.org/licenses/.
50
51
53 For more information, please refer to the MySQL Reference Manual, which
54 may already be installed locally and which is also available online at
55 http://dev.mysql.com/doc/.
56
58 Oracle Corporation (http://dev.mysql.com/).
59
60
61
62MySQL 8.0 11/26/2020 LZ4_DECOMPRESS(1)