-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Backport 2.x]Support for OpenSearch alias type
Signed-off-by: Heng Qian <[email protected]>
- Loading branch information
1 parent
c7b623a
commit 998c76f
Showing
17 changed files
with
312 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{"index":{"_id":"1"}} | ||
{"original_col" : 1} | ||
{"index":{"_id":"2"}} | ||
{"original_col" : 2} | ||
{"index":{"_id":"3"}} | ||
{"original_col" : 3} |
13 changes: 13 additions & 0 deletions
13
integ-test/src/test/resources/indexDefinitions/alias_index_mapping.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"mappings": { | ||
"properties": { | ||
"original_col": { | ||
"type": "integer" | ||
}, | ||
"alias_col": { | ||
"type": "alias", | ||
"path": "original_col" | ||
} | ||
} | ||
} | ||
} |
83 changes: 83 additions & 0 deletions
83
opensearch/src/main/java/org/opensearch/sql/opensearch/data/type/OpenSearchAliasType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package org.opensearch.sql.opensearch.data.type; | ||
|
||
import java.util.List; | ||
import java.util.Optional; | ||
import java.util.Set; | ||
import org.opensearch.sql.data.type.ExprType; | ||
|
||
/** | ||
* The type of alias. See <a | ||
* href="https://opensearch.org/docs/latest/opensearch/supported-field-types/alias/">doc</a> | ||
*/ | ||
public class OpenSearchAliasType extends OpenSearchDataType { | ||
|
||
public static final String typeName = "alias"; | ||
public static final String pathPropertyName = "path"; | ||
public static final Set<MappingType> objectFieldTypes = | ||
Set.of(MappingType.Object, MappingType.Nested); | ||
private final String path; | ||
private final OpenSearchDataType originalType; | ||
|
||
public OpenSearchAliasType(String path, OpenSearchDataType type) { | ||
super(type.getExprCoreType()); | ||
if (type instanceof OpenSearchAliasType) { | ||
throw new IllegalStateException( | ||
String.format("Alias field cannot refer to the path [%s] of alias type", path)); | ||
} else if (objectFieldTypes.contains(type.getMappingType())) { | ||
throw new IllegalStateException( | ||
String.format("Alias field cannot refer to the path [%s] of object type", path)); | ||
} | ||
this.path = path; | ||
this.originalType = type; | ||
} | ||
|
||
@Override | ||
public Optional<String> getOriginalPath() { | ||
return Optional.of(this.path); | ||
} | ||
|
||
@Override | ||
public ExprType getOriginalExprType() { | ||
return originalType.getExprType(); | ||
} | ||
|
||
@Override | ||
public ExprType getExprType() { | ||
return this; | ||
} | ||
|
||
@Override | ||
public OpenSearchDataType cloneEmpty() { | ||
return new OpenSearchAliasType(this.path, originalType.cloneEmpty()); | ||
} | ||
|
||
@Override | ||
public boolean isCompatible(ExprType other) { | ||
return originalType.isCompatible(other); | ||
} | ||
|
||
@Override | ||
public List<ExprType> getParent() { | ||
return originalType.getParent(); | ||
} | ||
|
||
@Override | ||
public String typeName() { | ||
return originalType.typeName(); | ||
} | ||
|
||
@Override | ||
public String legacyTypeName() { | ||
return originalType.legacyTypeName(); | ||
} | ||
|
||
@Override | ||
public boolean shouldCast(ExprType other) { | ||
return originalType.shouldCast(other); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.