Skip to content

Support spath with dynamic fields#5058

Merged
ykmr1224 merged 28 commits into
opensearch-project:mainfrom
ykmr1224:spath/dynamic-fields-limited
Jan 26, 2026
Merged

Support spath with dynamic fields#5058
ykmr1224 merged 28 commits into
opensearch-project:mainfrom
ykmr1224:spath/dynamic-fields-limited

Conversation

@ykmr1224

@ykmr1224 ykmr1224 commented Jan 20, 2026

Copy link
Copy Markdown
Collaborator

Description

  • Extend spath command to support dynamic fields, where it no longer requires field selection.
    • It has limitations as it does not fully support field ordering of dynamic fields.
  • This change is for step2-1 in [RFC] Support Schema-on-Read in PPL #4984
  • The fields not explicitly referred in the query would be stored in _MAP(dynamic fields), and expanded when result is organized.
  • It does not support partial wildcard like prefix*, *suffix, and raise error in case those are used.
  • When result contains dynamic fields, OpenSearchExecutionEngine puts dynamic fields at the end of the fields when organizing result. (This is temporal behavior until field ordering is implemented)
    • To align this behavior, it raises error when fields command specify * in the middle of field list.
  • Following commands will be adopted in later PR (command with multiple input requires change) : appendcol, multisearch, lookup

Related Issues

#4984

Check List

  • New functionality includes testing.
  • New functionality has been documented.
  • New functionality has javadoc added.
  • New functionality has a user manual doc added.
  • New PPL command checklist all confirmed.
  • API changes companion pull request created.
  • Commits are signed per the DCO using --signoff or -s.
  • Public documentation issue/PR created.

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.

@ykmr1224 ykmr1224 self-assigned this Jan 20, 2026
@ykmr1224 ykmr1224 added enhancement New feature or request PPL Piped processing language calcite calcite migration releated labels Jan 20, 2026
@coderabbitai

coderabbitai Bot commented Jan 20, 2026

Copy link
Copy Markdown
Contributor
📝 Walkthrough

Summary by CodeRabbit

  • New Features

    • Auto extraction for SPATH that appends conflicting fields and expands dynamic fields into result columns; improved join behavior with configurable overwrite semantics
  • Documentation

    • SPATH docs renamed/expanded to “Auto Extraction”; adds system column guidance, examples, limitations and performance notes
  • Bug Fixes

    • Stronger wildcard/partial-wildcard validation, fillnull safeguards, and more consistent field-resolution across project/aggregation/join flows
  • Tests

    • Large expansion of SPATH and dynamic-field unit and integration tests, including explain and join scenarios

✏️ Tip: You can customize this high-level summary in your review settings.

Walkthrough

Adds end-to-end dynamic-fields (auto extraction): SPATH/field-resolution updates, Calcite planning/merge changes to emit a runtime _MAP, utilities to align/merge dynamic maps during joins, runtime expansion of _MAP into STRING columns, many tests, and docs updates.

Changes

Cohort / File(s) Summary
Debug util
\common/src/main/java/org/opensearch/sql/common/utils/DebugUtils.java``
Removed Log4j logger; debug output now uses System.out.println.
Field resolution API
\core/src/main/java/org/opensearch/sql/ast/analysis/FieldResolutionResult.java``
Switched constructors/inputs to Collection<String>, added accessors (getRegularFieldsUnmodifiable, hasWildcards, hasPartialWildcards, hasRegularFields), set ops (exclude, or, and), and helpers.
Field resolution visitor & SPATH
\core/src/main/java/org/opensearch/sql/ast/analysis/FieldResolutionVisitor.java`, `ppl/src/test/java/org/opensearch/sql/ppl/parser/FieldResolutionVisitorTest.java``
Introduced ALL_FIELDS sentinel, changed requirement propagation, partial-wildcard checks, added ALL_FIELDS exclusion helpers, SPATH validations, and many SPATH-related tests.
Calcite planning & dynamic-fields helper
\core/src/main/java/org/opensearch/sql/calcite/CalciteRelNodeVisitor.java`, `core/src/main/java/org/opensearch/sql/calcite/DynamicFieldsHelper.java``
Injects dynamic _MAP handling into planning (project/append/join), enforces wildcard placement when dynamic fields present, and provides utilities to detect/align static vs dynamic fields and build MAP_FROM_ARRAYS/MAP_REMOVE projections.
Join merge & overwrite semantics
\core/src/main/java/org/opensearch/sql/calcite/utils/JoinAndLookupUtils.java`, `core/src/main/java/org/opensearch/sql/ast/tree/Join.java``
Added OverwriteMode enum and mergeDynamicFieldsAsNeeded to merge _MAP fields after joins; added Join.isOverwrite() accessor and updated rename logic to include DYNAMIC_FIELDS_MAP.
Runtime result expansion
\core/src/main/java/org/opensearch/sql/calcite/utils/DynamicFieldsResultProcessor.java`, `opensearch/src/main/java/org/opensearch/sql/opensearch/executor/OpenSearchExecutionEngine.java``
New processor expands _MAP into concrete STRING columns and OpenSearchExecutionEngine now post-processes QueryResponse with it.
Constants, Rex/func helpers & functions
\core/src/main/java/org/opensearch/sql/calcite/plan/DynamicFieldsConstants.java`, `core/src/main/java/org/opensearch/sql/calcite/ExtendedRexBuilder.java`, `core/src/main/java/org/opensearch/sql/expression/function/BuiltinFunctionName.java`, `core/src/main/java/org/opensearch/sql/expression/function/PPLFuncImpTable.java``
Added DYNAMIC_FIELDS_MAP constant, ExtendedRexBuilder helpers (itemCall, makeCall), registered MAP_FROM_ARRAYS and operator mapping.
Tests & expected plans
\core/src/test/... `, `integ-test/src/test/... `, `integ-test/src/test/resources/expectedOutput/... ``
Many new/updated unit and integration tests covering SPATH, dynamic fields, joins, explains, and DynamicFieldsResultProcessor; new expected explain YAMLs.
Docs & minor tests
\docs/user/ppl/cmd/spath.md`, `docs/user/ppl/general/identifiers.md`, `integ-test/src/test/java/org/opensearch/sql/util/MatcherUtils.java``
Renamed sections to "Auto Extraction", documented _MAP system column and wildcard exclusions, improved assertion messages.
Test infra & helpers
\integ-test/src/test/java/org/opensearch/sql/calcite/remote/CalcitePPLSpathTestBase.java`, `integ-test/src/test/java/org/opensearch/sql/calcite/remote/CalcitePPLSpathWithJoinIT.java`, `integ-test/src/test/java/org/opensearch/sql/calcite/remote/CalcitePPLSpathCommandIT.java``
New test base and many integration tests for JSON-backed SPATH scenarios, joins, overwrite behaviors, and dynamic-field interactions.

Sequence Diagram(s)

sequenceDiagram
    autonumber
    participant Client as User Query
    participant FRV as FieldResolutionVisitor
    participant CRV as CalciteRelNodeVisitor
    participant JoinUtil as JoinAndLookupUtils
    participant Exec as OpenSearchExecutionEngine
    participant RP as DynamicFieldsResultProcessor

    Client->>FRV: parse & analyze (detect ALL_FIELDS / wildcards)
    FRV->>CRV: emit Calcite plan with field requirements and `_MAP` markers
    CRV->>JoinUtil: on join -> adjust inputs and request dynamic-map merge
    JoinUtil-->>CRV: merged RelNode with `_MAP` (order per OverwriteMode)
    CRV->>Exec: execute physical plan -> QueryResponse (may include `_MAP`)
    Exec->>RP: expandDynamicFields(QueryResponse)
    RP-->>Client: return expanded QueryResponse (concrete STRING columns)
Loading

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~60 minutes

Possibly related PRs

Suggested reviewers

  • penghuo
  • anirudha
  • kavithacm
  • derek-ho
  • joshuali925
  • GumpacG
  • Swiddis
  • qianheng-aws
  • LantaoJin
🚥 Pre-merge checks | ✅ 2 | ❌ 1
❌ Failed checks (1 warning)
Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 21.21% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (2 passed)
Check name Status Explanation
Title check ✅ Passed The PR title 'Support spath with dynamic fields' clearly and concisely describes the main change—extending the spath command to support dynamic fields, which is the primary feature added throughout the changeset.
Description check ✅ Passed The PR description is directly related to the changeset, detailing the spath dynamic fields feature, its limitations, scope (step 2-1 of issue #4984), and implementation specifics including the _MAP field, error handling, and future work.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing touches
  • 📝 Generate docstrings

Comment @coderabbitai help to get the list of available commands and usage tips.

@ykmr1224 ykmr1224 force-pushed the spath/dynamic-fields-limited branch from d1a62c4 to 3defb88 Compare January 20, 2026 18:28
Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

@dai-chen dai-chen left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just one concern: I feel it's unclear what future PPL command developers need to understand or implement when adding commands that interact with dynamic fields, since current _MAP implementation seems leaks across multiple layers (field resolution, RelNode visitor, join handling, result post-processing, etc). We can consider improving document or consolidating the logic later if this is valid concern. Thanks!

@ykmr1224 ykmr1224 merged commit 633d760 into opensearch-project:main Jan 26, 2026
37 checks passed
@opensearch-trigger-bot

Copy link
Copy Markdown
Contributor

The backport to 2.19-dev failed:

The process '/usr/bin/git' failed with exit code 128

To backport manually, run these commands in your terminal:

# Navigate to the root of your repository
cd $(git rev-parse --show-toplevel)
# Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add ../.worktrees/sql/backport-2.19-dev 2.19-dev
# Navigate to the new working tree
pushd ../.worktrees/sql/backport-2.19-dev
# Create a new branch
git switch --create backport/backport-5058-to-2.19-dev
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 633d760a5d0eb5a516232037ef79cb1cdf3af75c
# Push it to GitHub
git push --set-upstream origin backport/backport-5058-to-2.19-dev
# Go back to the original working tree
popd
# Delete the working tree
git worktree remove ../.worktrees/sql/backport-2.19-dev

Then, create a pull request where the base branch is 2.19-dev and the compare/head branch is backport/backport-5058-to-2.19-dev.

ykmr1224 added a commit to ykmr1224/sql that referenced this pull request Jan 26, 2026
* Support spath with dynamic fields

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Add explain test and sql conversion test

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Address comments

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix FieldResolutionResultTest

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Address comment

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix explain

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix join logic to adopt dynamic fields

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix join logic

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix spath.md

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Support fillnull and replace

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Update spath.md

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix test failure

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix doc and error for fillnull

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Accept wildcard only at the end of field list

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Minor fix

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Adopt append command to spath

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix join to allow spath in only one input

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix unit test failure

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix join inputs logic

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix test failure

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Move helper methods

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Add _MAP description in the docs

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Extract more from CalciteRelNodeVisitor

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Refactor IT and address comments

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix FieldResolutionResult

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix DynamicFieldsHelper

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Refactor DynamicFieldsHelper

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix DynamicFieldsHelper

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

---------

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>
(cherry picked from commit 633d760)
Signed-off-by: Tomoyuki Morita <moritato@amazon.com>
asifabashar pushed a commit to asifabashar/sql that referenced this pull request Jan 26, 2026
* Support spath with dynamic fields

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Add explain test and sql conversion test

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Address comments

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix FieldResolutionResultTest

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Address comment

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix explain

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix join logic to adopt dynamic fields

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix join logic

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix spath.md

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Support fillnull and replace

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Update spath.md

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix test failure

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix doc and error for fillnull

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Accept wildcard only at the end of field list

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Minor fix

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Adopt append command to spath

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix join to allow spath in only one input

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix unit test failure

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix join inputs logic

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix test failure

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Move helper methods

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Add _MAP description in the docs

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Extract more from CalciteRelNodeVisitor

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Refactor IT and address comments

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix FieldResolutionResult

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix DynamicFieldsHelper

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Refactor DynamicFieldsHelper

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix DynamicFieldsHelper

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

---------

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>
@LantaoJin LantaoJin added the backport-manually Filed a PR to backport manually. label Jan 27, 2026
@coderabbitai coderabbitai Bot mentioned this pull request Jan 27, 2026
LantaoJin pushed a commit that referenced this pull request Jan 27, 2026
* Support spath with dynamic fields (#5058)

* Support spath with dynamic fields

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Add explain test and sql conversion test

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Address comments

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix FieldResolutionResultTest

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Address comment

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix explain

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix join logic to adopt dynamic fields

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix join logic

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix spath.md

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Support fillnull and replace

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Update spath.md

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix test failure

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix doc and error for fillnull

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Accept wildcard only at the end of field list

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Minor fix

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Adopt append command to spath

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix join to allow spath in only one input

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix unit test failure

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix join inputs logic

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix test failure

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Move helper methods

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Add _MAP description in the docs

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Extract more from CalciteRelNodeVisitor

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Refactor IT and address comments

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix FieldResolutionResult

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix DynamicFieldsHelper

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Refactor DynamicFieldsHelper

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix DynamicFieldsHelper

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

---------

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>
(cherry picked from commit 633d760)
Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix for Java 11

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

---------

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>
asifabashar pushed a commit to asifabashar/sql that referenced this pull request Jan 27, 2026
* Support spath with dynamic fields

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Add explain test and sql conversion test

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Address comments

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix FieldResolutionResultTest

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Address comment

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix explain

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix join logic to adopt dynamic fields

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix join logic

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix spath.md

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Support fillnull and replace

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Update spath.md

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix test failure

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix doc and error for fillnull

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Accept wildcard only at the end of field list

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Minor fix

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Adopt append command to spath

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix join to allow spath in only one input

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix unit test failure

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix join inputs logic

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix test failure

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Move helper methods

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Add _MAP description in the docs

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Extract more from CalciteRelNodeVisitor

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Refactor IT and address comments

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix FieldResolutionResult

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix DynamicFieldsHelper

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Refactor DynamicFieldsHelper

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

* Fix DynamicFieldsHelper

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>

---------

Signed-off-by: Tomoyuki Morita <moritato@amazon.com>
This was referenced Feb 4, 2026
dai-chen added a commit to dai-chen/sql-1 that referenced this pull request Feb 11, 2026
This reverts commit 633d760.

Signed-off-by: Chen Dai <daichen@amazon.com>
@dai-chen dai-chen mentioned this pull request Feb 11, 2026
8 tasks
dai-chen added a commit to dai-chen/sql-1 that referenced this pull request Feb 11, 2026
This reverts commit 633d760.

Signed-off-by: Chen Dai <daichen@amazon.com>
dai-chen added a commit that referenced this pull request Feb 11, 2026
* Revert "Adopt appendcol, appendpipe, multisearch to spath (#5075)"

This reverts commit 7630db8.

Signed-off-by: Chen Dai <daichen@amazon.com>

* Revert "Support spath with dynamic fields (#5058)"

This reverts commit 633d760.

Signed-off-by: Chen Dai <daichen@amazon.com>

* Revert "Implement spath command with field resolution (#5028)"

This reverts commit 65baa2a.

Signed-off-by: Chen Dai <daichen@amazon.com>

* Fix failed IT testSpathWithMvCombine

Signed-off-by: Chen Dai <daichen@amazon.com>

---------

Signed-off-by: Chen Dai <daichen@amazon.com>
LantaoJin pushed a commit to LantaoJin/search-plugins-sql that referenced this pull request Feb 12, 2026
* Revert "Adopt appendcol, appendpipe, multisearch to spath (opensearch-project#5075)"

This reverts commit 7630db8.

Signed-off-by: Chen Dai <daichen@amazon.com>

* Revert "Support spath with dynamic fields (opensearch-project#5058)"

This reverts commit 633d760.

Signed-off-by: Chen Dai <daichen@amazon.com>

* Revert "Implement spath command with field resolution (opensearch-project#5028)"

This reverts commit 65baa2a.

Signed-off-by: Chen Dai <daichen@amazon.com>

* Fix failed IT testSpathWithMvCombine

Signed-off-by: Chen Dai <daichen@amazon.com>

---------

Signed-off-by: Chen Dai <daichen@amazon.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

backport 2.19-dev backport-failed backport-manually Filed a PR to backport manually. calcite calcite migration releated enhancement New feature or request PPL Piped processing language

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants