Technay commented on a change in pull request #1544: [CALCITE-3415] Supports REGEXP_SUBSTR function URL: https://github.com/apache/calcite/pull/1544#discussion_r341200967
########## File path: core/src/main/java/org/apache/calcite/sql/dialect/BigQuerySqlDialect.java ########## @@ -43,6 +46,10 @@ import java.util.Locale; import java.util.regex.Pattern; +import static org.apache.calcite.sql.fun.SqlLibraryOperators.REGEXP_EXTRACT; +import static org.apache.calcite.sql.fun.SqlLibraryOperators.REGEXP_EXTRACT_ALL; +import static org.apache.calcite.sql.fun.SqlLibraryOperators.SUBSTR; Review comment: The other option is to write fully qualified reference everywhere in the class where I need to use those particular variables. Is it okay? ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
