multi_compress 0.3.5 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +76 -0
- data/GET_STARTED.md +188 -0
- data/README.md +56 -0
- data/db_core/include/mcdb_format.h +55 -0
- data/db_core/src/mcdb_format.c +341 -0
- data/db_deployment/mysql/Makefile +48 -0
- data/db_deployment/mysql/README.md +42 -0
- data/db_deployment/mysql/bin/common +160 -0
- data/db_deployment/mysql/bin/disable +40 -0
- data/db_deployment/mysql/bin/doctor +64 -0
- data/db_deployment/mysql/bin/enable +57 -0
- data/db_deployment/mysql/bin/install +64 -0
- data/db_deployment/mysql/bin/status +65 -0
- data/db_deployment/mysql/bin/uninstall +47 -0
- data/db_deployment/mysql/bin/upgrade +115 -0
- data/db_deployment/mysql/bin/verify +14 -0
- data/db_deployment/postgres/Makefile +45 -0
- data/db_deployment/postgres/README.md +60 -0
- data/db_deployment/postgres/bin/doctor +61 -0
- data/db_deployment/postgres/bin/enable +136 -0
- data/db_deployment/postgres/bin/install +104 -0
- data/db_deployment/postgres/bin/uninstall +54 -0
- data/db_deployment/postgres/bin/verify +14 -0
- data/docs/database-envelope-v1.md +159 -0
- data/exe/multi_compress +228 -0
- data/ext/multi_compress/extconf.rb +4 -0
- data/ext/multi_compress/multi_compress.c +30 -0
- data/lib/multi_compress/active_record.rb +61 -0
- data/lib/multi_compress/codec.rb +164 -0
- data/lib/multi_compress/database.rb +106 -0
- data/lib/multi_compress/db_deployment.rb +456 -0
- data/lib/multi_compress/version.rb +1 -1
- data/multi_compress.gemspec +55 -0
- data/mysql_udf/Makefile +96 -0
- data/mysql_udf/README.md +95 -0
- data/mysql_udf/sql/examples.sql +11 -0
- data/mysql_udf/sql/install.sql +15 -0
- data/mysql_udf/sql/uninstall.sql +4 -0
- data/mysql_udf/sql/views.sql +8 -0
- data/mysql_udf/src/multi_compress_mysql.c +133 -0
- data/mysql_udf/src/mysql_udf_abi_57.h +34 -0
- data/mysql_udf/test/mcdb_cli.c +60 -0
- data/mysql_udf/test/run_e2e.sh +296 -0
- data/postgres_extension/Makefile +74 -0
- data/postgres_extension/README.md +112 -0
- data/postgres_extension/multi_compress.control +4 -0
- data/postgres_extension/multi_compress_pg.exports +12 -0
- data/postgres_extension/sql/examples.sql +12 -0
- data/postgres_extension/sql/multi_compress--0.5.0.sql +24 -0
- data/postgres_extension/sql/uninstall.sql +2 -0
- data/postgres_extension/sql/views.sql +7 -0
- data/postgres_extension/src/mcdb_format.c +2 -0
- data/postgres_extension/src/multi_compress_pg.c +96 -0
- data/postgres_extension/test/run_e2e.sh +323 -0
- metadata +52 -3
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: multi_compress
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Roman Haydarov
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-07-
|
|
11
|
+
date: 2026-07-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -72,7 +72,8 @@ description: 'Unified C-extension gem for zstd, lz4, and brotli compression. One
|
|
|
72
72
|
sources — no system libraries required.'
|
|
73
73
|
email:
|
|
74
74
|
- romnhajdarov@gmail.com
|
|
75
|
-
executables:
|
|
75
|
+
executables:
|
|
76
|
+
- multi_compress
|
|
76
77
|
extensions:
|
|
77
78
|
- ext/multi_compress/extconf.rb
|
|
78
79
|
extra_rdoc_files: []
|
|
@@ -82,6 +83,28 @@ files:
|
|
|
82
83
|
- LICENSE.txt
|
|
83
84
|
- README.md
|
|
84
85
|
- THIRD_PARTY_NOTICES.md
|
|
86
|
+
- db_core/include/mcdb_format.h
|
|
87
|
+
- db_core/src/mcdb_format.c
|
|
88
|
+
- db_deployment/mysql/Makefile
|
|
89
|
+
- db_deployment/mysql/README.md
|
|
90
|
+
- db_deployment/mysql/bin/common
|
|
91
|
+
- db_deployment/mysql/bin/disable
|
|
92
|
+
- db_deployment/mysql/bin/doctor
|
|
93
|
+
- db_deployment/mysql/bin/enable
|
|
94
|
+
- db_deployment/mysql/bin/install
|
|
95
|
+
- db_deployment/mysql/bin/status
|
|
96
|
+
- db_deployment/mysql/bin/uninstall
|
|
97
|
+
- db_deployment/mysql/bin/upgrade
|
|
98
|
+
- db_deployment/mysql/bin/verify
|
|
99
|
+
- db_deployment/postgres/Makefile
|
|
100
|
+
- db_deployment/postgres/README.md
|
|
101
|
+
- db_deployment/postgres/bin/doctor
|
|
102
|
+
- db_deployment/postgres/bin/enable
|
|
103
|
+
- db_deployment/postgres/bin/install
|
|
104
|
+
- db_deployment/postgres/bin/uninstall
|
|
105
|
+
- db_deployment/postgres/bin/verify
|
|
106
|
+
- docs/database-envelope-v1.md
|
|
107
|
+
- exe/multi_compress
|
|
85
108
|
- ext/multi_compress/brotli_dec_static_init.c
|
|
86
109
|
- ext/multi_compress/brotli_enc_static_init.c
|
|
87
110
|
- ext/multi_compress/extconf.rb
|
|
@@ -320,7 +343,33 @@ files:
|
|
|
320
343
|
- ext/multi_compress/vendor/zstd/lib/zstd.h
|
|
321
344
|
- ext/multi_compress/vendor/zstd/lib/zstd_errors.h
|
|
322
345
|
- lib/multi_compress.rb
|
|
346
|
+
- lib/multi_compress/active_record.rb
|
|
347
|
+
- lib/multi_compress/codec.rb
|
|
348
|
+
- lib/multi_compress/database.rb
|
|
349
|
+
- lib/multi_compress/db_deployment.rb
|
|
323
350
|
- lib/multi_compress/version.rb
|
|
351
|
+
- multi_compress.gemspec
|
|
352
|
+
- mysql_udf/Makefile
|
|
353
|
+
- mysql_udf/README.md
|
|
354
|
+
- mysql_udf/sql/examples.sql
|
|
355
|
+
- mysql_udf/sql/install.sql
|
|
356
|
+
- mysql_udf/sql/uninstall.sql
|
|
357
|
+
- mysql_udf/sql/views.sql
|
|
358
|
+
- mysql_udf/src/multi_compress_mysql.c
|
|
359
|
+
- mysql_udf/src/mysql_udf_abi_57.h
|
|
360
|
+
- mysql_udf/test/mcdb_cli.c
|
|
361
|
+
- mysql_udf/test/run_e2e.sh
|
|
362
|
+
- postgres_extension/Makefile
|
|
363
|
+
- postgres_extension/README.md
|
|
364
|
+
- postgres_extension/multi_compress.control
|
|
365
|
+
- postgres_extension/multi_compress_pg.exports
|
|
366
|
+
- postgres_extension/sql/examples.sql
|
|
367
|
+
- postgres_extension/sql/multi_compress--0.5.0.sql
|
|
368
|
+
- postgres_extension/sql/uninstall.sql
|
|
369
|
+
- postgres_extension/sql/views.sql
|
|
370
|
+
- postgres_extension/src/mcdb_format.c
|
|
371
|
+
- postgres_extension/src/multi_compress_pg.c
|
|
372
|
+
- postgres_extension/test/run_e2e.sh
|
|
324
373
|
homepage: https://github.com/roman-haidarov/multi_compress
|
|
325
374
|
licenses:
|
|
326
375
|
- MIT
|