-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: introduce DefaultExtensionCatalog
contains static strings for default extensions
- Loading branch information
Showing
5 changed files
with
32 additions
and
13 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
16 changes: 16 additions & 0 deletions
16
core/src/main/java/io/substrait/extension/DefaultExtensionCatalog.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,16 @@ | ||
package io.substrait.extension; | ||
|
||
public class DefaultExtensionCatalog { | ||
public static final String FUNCTIONS_AGGREGATE_APPROX = "/functions_aggregate_approx.yaml"; | ||
public static final String FUNCTIONS_AGGREGATE_GENERIC = "/functions_aggregate_generic.yaml"; | ||
public static final String FUNCTIONS_ARITHMETIC = "/functions_arithmetic.yaml"; | ||
public static final String FUNCTIONS_ARITHMETIC_DECIMAL = "/functions_arithmetic_decimal.yaml"; | ||
public static final String FUNCTIONS_BOOLEAN = "/functions_boolean.yaml"; | ||
public static final String FUNCTIONS_COMPARISON = "/functions_comparison.yaml"; | ||
public static final String FUNCTIONS_DATETIME = "/functions_datetime.yaml"; | ||
public static final String FUNCTIONS_GEOMETRY = "/functions_geometry.yaml"; | ||
public static final String FUNCTIONS_LOGARITHMIC = "/functions_logarithmic.yaml"; | ||
public static final String FUNCTIONS_ROUNDING = "/functions_rounding.yaml"; | ||
public static final String FUNCTIONS_SET = "/functions_set.yaml"; | ||
public static final String FUNCTIONS_STRING = "/functions_string.yaml"; | ||
} |
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