Skip to content

Commit

Permalink
Merge pull request ClickHouse#60090 from ClickHouse/update-lz4
Browse files Browse the repository at this point in the history
Update LZ4 to the latest dev
  • Loading branch information
alexey-milovidov committed Feb 17, 2024
2 parents 0e944d4 + 96113a4 commit 76578eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/lz4
Submodule lz4 updated 82 files
+10 −10 .circleci/config.yml
+9 −4 .cirrus.yml
+132 −0 .clang-format
+162 −177 .github/workflows/ci.yml
+65 −0 .github/workflows/scorecard.yml
+7 −0 .gitignore
+43 −48 Makefile
+16 −14 Makefile.inc
+9 −0 NEWS
+1 −1 README.md
+41 −40 appveyor.yml
+6 −2 build/VS2010/datagen/datagen.vcxproj
+6 −3 build/VS2010/lz4/lz4.vcxproj
+7 −3 build/VS2017/datagen/datagen.vcxproj
+2 −2 build/VS2017/lz4/lz4.vcxproj
+7 −3 build/VS2022/datagen/datagen.vcxproj
+7 −3 build/VS2022/lz4/lz4.vcxproj
+14 −35 build/cmake/CMakeLists.txt
+3 −3 build/meson/GetLz4LibraryVersion.py
+7 −7 build/meson/meson/examples/meson.build
+19 −2 build/meson/meson/programs/meson.build
+6 −2 build/meson/meson/tests/meson.build
+2 −0 build/meson/meson_options.txt
+4 −4 contrib/djgpp/Makefile
+3 −3 contrib/gen_manual/Makefile
+3 −3 contrib/gen_manual/gen-lz4-manual.sh
+20 −16 doc/lz4_Frame_format.md
+83 −29 doc/lz4_manual.html
+86 −35 doc/lz4frame_manual.html
+8 −7 examples/.gitignore
+37 −56 examples/Makefile
+64 −54 examples/bench_functions.c
+0 −0 examples/print_version.c
+0 −0 examples/streamingHC_ringBuffer.c
+51 −38 lib/Makefile
+93 −35 lib/lz4.c
+45 −28 lib/lz4.h
+109 −80 lib/lz4file.c
+1 −1 lib/lz4file.h
+155 −97 lib/lz4frame.c
+88 −49 lib/lz4frame.h
+557 −153 lib/lz4hc.c
+1 −1 lib/lz4hc.h
+1 −0 programs/.gitignore
+70 −38 programs/Makefile
+29 −13 programs/README.md
+49 −43 programs/bench.c
+220 −0 programs/lorem.c
+46 −0 programs/lorem.h
+7 −3 programs/lz4.1
+10 −8 programs/lz4.1.md
+108 −44 programs/lz4cli.c
+56 −0 programs/lz4conf.h
+877 −182 programs/lz4io.c
+7 −4 programs/lz4io.h
+3 −2 programs/platform.h
+291 −0 programs/threadpool.c
+67 −0 programs/threadpool.h
+175 −0 programs/timefn.c
+69 −0 programs/timefn.h
+243 −0 programs/util.c
+5 −130 programs/util.h
+2 −0 tests/.gitignore
+82 −79 tests/Makefile
+23 −0 tests/cmake/CMakeLists.txt
+2 −3 tests/datagen.c
+13 −11 tests/datagen.h
+21 −23 tests/datagencli.c
+185 −60 tests/frametest.c
+154 −83 tests/fullbench.c
+18 −5 tests/fuzzer.c
+61 −0 tests/loremOut.c
+30 −0 tests/loremOut.h
+33 −18 tests/test-lz4-abi.py
+3 −0 tests/test-lz4-basic.sh
+13 −2 tests/test-lz4-dict.sh
+1 −1 tests/test-lz4-fast-hugefile.sh
+1 −1 tests/test-lz4-list.py
+3 −1 tests/test-lz4-multiple-legacy.sh
+2 −2 tests/test-lz4-speed.py
+43 −13 tests/test-lz4-versions.py
+1 −1 tests/test-lz4hc-hugefile.sh

0 comments on commit 76578eb

Please sign in to comment.