You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@asterixdb.apache.org by gg...@apache.org on 2022/02/16 00:12:40 UTC

[asterixdb] branch master updated: [NO-ISSUE][COMP] Making SqlppFunctionBodyRewriter public

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 <gg...@uci.edu>
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 <je...@fulliautomatix.ics.uci.edu>
    Integration-Tests: Jenkins <je...@fulliautomatix.ics.uci.edu>
    Tested-by: Jenkins <je...@fulliautomatix.ics.uci.edu>
    Reviewed-by: Ian Maxon <im...@uci.edu>
---
 .../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);