This is an automated email from the ASF dual-hosted git repository.
xiangfu0 pushed a change to branch xiangfu0/codex/codec-stack/02-runtime
in repository https://gitbox.apache.org/repos/asf/pinot.git
omit bb596e66c96 Harden Snappy decode bounds, reserve CODEC in the
registry, reject ZSTD(0)
omit f41789af4f1 Add bounded codec runtime and compression handlers
omit ba1a944cd4c Document why the codec DSL is not parsed by the SQL
expression parser
omit 2d9d6c1ecb4 Pin codec DSL equality and limit symmetry with tests
omit 240b090de3c Reject leading-zero codec arguments and tighten the spec
length cap
omit 5cbbe1b53ef Add codec spec DSL and configuration plumbing
add c7903e96037 Add codec spec DSL and configuration plumbing
add 822620de9e1 Reject leading-zero codec arguments and tighten the spec
length cap
add 7fc32733919 Pin codec DSL equality and limit symmetry with tests
add e3e58f452a2 Document why the codec DSL is not parsed by the SQL
expression parser
add c7d3f5ed80f Address codec configuration review feedback
add 29eddbd4680 Centralize codec DSL syntax validation
add c9a7afc7197 Add bounded codec runtime and compression handlers
add e8f70f4a100 Harden Snappy decode bounds, reserve CODEC in the
registry, reject ZSTD(0)
add e99c0e8400b Address codec runtime review feedback
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (bb596e66c96)
\
N -- N -- N refs/heads/xiangfu0/codex/codec-stack/02-runtime
(e99c0e8400b)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.../local/io/codec/CodecPipelineExecutor.java | 141 ++++++++++++++++-----
.../segment/local/io/codec/CodecRegistry.java | 12 +-
.../local/io/codec/GzipCodecDefinition.java | 19 +--
.../impl/openstruct/OpenStructColumnSplitter.java | 5 -
.../index/forward/ForwardIndexCreatorFactory.java | 1 -
.../index/forward/ForwardIndexReaderFactory.java | 15 ---
.../segment/index/forward/ForwardIndexType.java | 8 --
.../segment/index/loader/ForwardIndexHandler.java | 9 --
.../index/openstruct/OpenStructIndexType.java | 3 -
.../local/io/codec/CodecPipelineExecutorTest.java | 29 ++++-
.../io/codec/CompressionCodecCorruptInputTest.java | 35 +++++
.../openstruct/OpenStructColumnSplitterTest.java | 38 ------
.../forward/ForwardIndexCreatorFactoryTest.java | 24 ----
.../forward/ForwardIndexReaderFactoryTest.java | 54 --------
.../index/forward/ForwardIndexTypeTest.java | 18 ---
.../index/loader/ForwardIndexHandlerTest.java | 21 ---
.../index/openstruct/OpenStructIndexTypeTest.java | 51 --------
.../segment/local/utils/TableConfigUtilsTest.java | 23 ----
.../pinot/segment/spi/codec/CodecDslSyntax.java | 87 +++++++++++++
.../pinot/segment/spi/codec/CodecInvocation.java | 61 ++-------
.../pinot/segment/spi/codec/CodecPipeline.java | 6 +-
.../pinot/segment/spi/codec/CodecSpecParser.java | 59 +++------
.../segment/spi/index/ForwardIndexConfig.java | 19 +--
.../segment/spi/codec/CodecInvocationTest.java | 1 +
.../segment/spi/index/ForwardIndexConfigTest.java | 20 ++-
25 files changed, 335 insertions(+), 424 deletions(-)
delete mode 100644
pinot-segment-local/src/test/java/org/apache/pinot/segment/local/segment/index/forward/ForwardIndexReaderFactoryTest.java
create mode 100644
pinot-segment-spi/src/main/java/org/apache/pinot/segment/spi/codec/CodecDslSyntax.java
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]