Yingyi Bu has submitted this change and it was merged. Change subject: Fix superclass of IfNullTypeComputer ......................................................................
Fix superclass of IfNullTypeComputer Change-Id: I8b7e195f3127c6c5922b93070bdf29c834ea9873 Reviewed-on: https://asterix-gerrit.ics.uci.edu/1760 Sonar-Qube: Jenkins <[email protected]> Tested-by: Jenkins <[email protected]> BAD: Jenkins <[email protected]> Integration-Tests: Jenkins <[email protected]> Reviewed-by: Yingyi Bu <[email protected]> --- M asterixdb/asterix-om/src/main/java/org/apache/asterix/om/typecomputer/impl/IfNullTypeComputer.java 1 file changed, 1 insertion(+), 1 deletion(-) Approvals: Yingyi Bu: Looks good to me, approved Jenkins: Verified; No violations found; No violations found; Verified diff --git a/asterixdb/asterix-om/src/main/java/org/apache/asterix/om/typecomputer/impl/IfNullTypeComputer.java b/asterixdb/asterix-om/src/main/java/org/apache/asterix/om/typecomputer/impl/IfNullTypeComputer.java index 149b35d..1384bac 100644 --- a/asterixdb/asterix-om/src/main/java/org/apache/asterix/om/typecomputer/impl/IfNullTypeComputer.java +++ b/asterixdb/asterix-om/src/main/java/org/apache/asterix/om/typecomputer/impl/IfNullTypeComputer.java @@ -23,7 +23,7 @@ import org.apache.asterix.om.types.ATypeTag; import org.apache.asterix.om.types.AUnionType; -public class IfNullTypeComputer extends IfMissingOrNullTypeComputer { +public class IfNullTypeComputer extends AbstractIfMissingOrNullTypeComputer { public static final IResultTypeComputer INSTANCE = new IfNullTypeComputer(); -- To view, visit https://asterix-gerrit.ics.uci.edu/1760 To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings Gerrit-MessageType: merged Gerrit-Change-Id: I8b7e195f3127c6c5922b93070bdf29c834ea9873 Gerrit-PatchSet: 2 Gerrit-Project: asterixdb Gerrit-Branch: master Gerrit-Owner: Dmitry Lychagin <[email protected]> Gerrit-Reviewer: Jenkins <[email protected]> Gerrit-Reviewer: Yingyi Bu <[email protected]>
