blob: 362fda1d186663fb98c747ca39bb72dc742ae820 [file] [log] [blame]
/*
Derby - Class org.apache.derby.impl.sql.compile.MaterializeSubqueryNode
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to you under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.apache.derby.impl.sql.compile;
import org.apache.derby.iapi.error.StandardException;
import org.apache.derby.iapi.reference.ClassName;
import org.apache.derby.iapi.services.classfile.VMOpcode;
import org.apache.derby.iapi.services.compiler.LocalField;
import org.apache.derby.iapi.services.compiler.MethodBuilder;
import org.apache.derby.iapi.services.context.ContextManager;
/**
* A MaterializeSubqueryNode is used to replace the nodes for a subquery, to facilitate
* code generation for materialization if possible. See beetle 4373 for details.
*
*/
class MaterializeSubqueryNode extends ResultSetNode
{
private LocalField lf;
MaterializeSubqueryNode(LocalField lf, ContextManager cm) {
super(cm);
this.lf = lf;
}
@Override
void generate(ActivationClassBuilder acb, MethodBuilder mb)
throws StandardException
{
acb.pushThisAsActivation(mb);
mb.getField(lf);
mb.callMethod(VMOpcode.INVOKEVIRTUAL, ClassName.BaseActivation, "materializeResultSetIfPossible", ClassName.NoPutResultSet, 1);
}
void decrementLevel(int decrement)
{
}
}