This is an automated email from the ASF dual-hosted git repository.
ggalvizo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/asterixdb.git
The following commit(s) were added to refs/heads/master by this push:
new ca51b2a [NO-ISSUE][COMP] Making SqlppFunctionBodyRewriter public
ca51b2a is described below
commit ca51b2adcd763be9f7df3174343bbaf913e8a714
Author: ggalvizo <[email protected]>
AuthorDate: Mon Feb 14 10:27:23 2022 -0800
[NO-ISSUE][COMP] Making SqlppFunctionBodyRewriter public
- user model changes: no
- storage format changes: no
- interface changes: no
Change-Id: I73b8f0dee44219a0e2ba50923772b4f2232f1271
Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/15285
Contrib: Jenkins <[email protected]>
Integration-Tests: Jenkins <[email protected]>
Tested-by: Jenkins <[email protected]>
Reviewed-by: Ian Maxon <[email protected]>
---
.../apache/asterix/lang/sqlpp/rewrites/SqlppFunctionBodyRewriter.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/asterixdb/asterix-lang-sqlpp/src/main/java/org/apache/asterix/lang/sqlpp/rewrites/SqlppFunctionBodyRewriter.java
b/asterixdb/asterix-lang-sqlpp/src/main/java/org/apache/asterix/lang/sqlpp/rewrites/SqlppFunctionBodyRewriter.java
index 557f17d..4352210 100644
---
a/asterixdb/asterix-lang-sqlpp/src/main/java/org/apache/asterix/lang/sqlpp/rewrites/SqlppFunctionBodyRewriter.java
+++
b/asterixdb/asterix-lang-sqlpp/src/main/java/org/apache/asterix/lang/sqlpp/rewrites/SqlppFunctionBodyRewriter.java
@@ -61,7 +61,7 @@ import org.apache.hyracks.api.exceptions.SourceLocation;
/**
* This rewriter is used to rewrite body expression of user defined functions
and views
*/
-class SqlppFunctionBodyRewriter extends SqlppQueryRewriter {
+public class SqlppFunctionBodyRewriter extends SqlppQueryRewriter {
public SqlppFunctionBodyRewriter(IParserFactory parserFactory) {
super(parserFactory);