Class StaticClassFieldReferenceNode
- java.lang.Object
-
- org.apache.derby.impl.sql.compile.QueryTreeNode
-
- org.apache.derby.impl.sql.compile.JavaValueNode
-
- org.apache.derby.impl.sql.compile.StaticClassFieldReferenceNode
-
- All Implemented Interfaces:
Visitable
public final class StaticClassFieldReferenceNode extends JavaValueNode
A StaticClassFieldReferenceNode represents a Java static field reference from a Class (as opposed to an Object). Field references can be made in DML (as expressions).
-
-
Field Summary
Fields Modifier and Type Field Description private booleanclassNameDelimitedIdentifierprivate java.lang.reflect.MemberfieldThe field we are going to access.private java.lang.StringfieldNameprivate java.lang.StringjavaClassName-
Fields inherited from class org.apache.derby.impl.sql.compile.JavaValueNode
forCallStatement, jsqlType
-
Fields inherited from class org.apache.derby.impl.sql.compile.QueryTreeNode
AUTOINCREMENT_CREATE_MODIFY, AUTOINCREMENT_CYCLE, AUTOINCREMENT_INC_INDEX, AUTOINCREMENT_IS_AUTOINCREMENT_INDEX, AUTOINCREMENT_START_INDEX
-
-
Constructor Summary
Constructors Constructor Description StaticClassFieldReferenceNode(java.lang.String javaClassName, java.lang.String fieldName, boolean classNameDelimitedIdentifier, ContextManager cm)Constructor for a StaticClassFieldReferenceNode
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) JavaValueNodebindExpression(FromList fromList, SubqueryList subqueryList, java.util.List<AggregateNode> aggregates)Bind this expression.(package private) booleancategorize(JBitSet referencedTabs, boolean simplePredsOnly)Categorize this predicate.(package private) voidgenerateExpression(ExpressionClassBuilder acb, MethodBuilder mb)General logic shared by Core compilation and by the Replication Filter compiler.(package private) intgetOrderableVariantType()Return the variant type for the underlying expression.(package private) voidpreprocess(int numTables, FromList outerFromList, SubqueryList outerSubqueryList, PredicateList outerPredicateList)Preprocess an expression tree.(package private) JavaValueNoderemapColumnReferencesToExpressions()Remap all ColumnReferences in this tree to be clones of the underlying expression.-
Methods inherited from class org.apache.derby.impl.sql.compile.JavaValueNode
castToPrimitive, checkReliability, generate, generateReceiver, generateReceiver, getCollationType, getConstantValueAsObject, getDataType, getJavaTypeName, getJSQLType, getPrimitiveTypeName, getReceiverExpression, isPrimitiveType, mapToTypeID, markForCallStatement, markReturnValueDiscarded, mustCastToPrimitive, returnValueDiscarded, returnValueToSQLDomain, setCollationType, setJavaTypeName, valueReturnedToSQLDomain
-
Methods inherited from class org.apache.derby.impl.sql.compile.QueryTreeNode
accept, acceptChildren, addTag, addUDTUsagePriv, addUDTUsagePriv, bindOffsetFetch, bindRowMultiSet, bindUserCatalogType, bindUserType, checkReliability, checkReliability, convertDefaultNode, copyTagsFrom, createTypeDependency, debugFlush, debugPrint, disablePrivilegeCollection, formatNodeString, generateAuthorizeCheck, getBeginOffset, getClassFactory, getCompilerContext, getContext, getContextManager, getDataDictionary, getDependencyManager, getEndOffset, getExecutionFactory, getGenericConstantActionFactory, getIntProperty, getLanguageConnectionContext, getLongProperty, getNullNode, getOffsetOrderedNodes, getOptimizerFactory, getOptimizerTracer, getParameterTypes, getSchemaDescriptor, getSchemaDescriptor, getStatementType, getTableDescriptor, getTypeCompiler, getUDTDesc, isAtomic, isPrivilegeCollectionRequired, isSessionSchema, isSessionSchema, makeConstantAction, makeTableName, makeTableName, nodeHeader, optimizerTracingIsOn, orReliability, parseSearchCondition, parseStatement, printLabel, printSubNodes, referencesSessionSchema, resolveTableToSynonym, setBeginOffset, setEndOffset, setRefActionInfo, stackPrint, taggedWith, toString, treePrint, treePrint, verifyClassExist
-
-
-
-
Constructor Detail
-
StaticClassFieldReferenceNode
StaticClassFieldReferenceNode(java.lang.String javaClassName, java.lang.String fieldName, boolean classNameDelimitedIdentifier, ContextManager cm)Constructor for a StaticClassFieldReferenceNode- Parameters:
javaClassName- The class namefieldName- The field namecm- The context manager
-
-
Method Detail
-
bindExpression
JavaValueNode bindExpression(FromList fromList, SubqueryList subqueryList, java.util.List<AggregateNode> aggregates) throws StandardException
Bind this expression. This means binding the sub-expressions, as well as figuring out what the return type is for this expression.- Specified by:
bindExpressionin classJavaValueNode- Parameters:
fromList- The FROM list for the query this expression is in, for binding columns.subqueryList- The subquery list being built as we find SubqueryNodesaggregates- The aggregate list being built as we find AggregateNodes- Returns:
- Nothing
- Throws:
StandardException- Thrown on error- See Also:
ValueNode.bindExpression(org.apache.derby.impl.sql.compile.FromList, org.apache.derby.impl.sql.compile.SubqueryList, java.util.List<org.apache.derby.impl.sql.compile.AggregateNode>)
-
preprocess
void preprocess(int numTables, FromList outerFromList, SubqueryList outerSubqueryList, PredicateList outerPredicateList) throws StandardExceptionPreprocess an expression tree. We do a number of transformations here (including subqueries, IN lists, LIKE and BETWEEN) plus subquery flattening. NOTE: This is done before the outer ResultSetNode is preprocessed.- Specified by:
preprocessin classJavaValueNode- Parameters:
numTables- Number of tables in the DML StatementouterFromList- FromList from outer query blockouterSubqueryList- SubqueryList from outer query blockouterPredicateList- PredicateList from outer query block- Throws:
StandardException- Thrown on error- See Also:
ValueNode.preprocess(int, org.apache.derby.impl.sql.compile.FromList, org.apache.derby.impl.sql.compile.SubqueryList, org.apache.derby.impl.sql.compile.PredicateList)
-
categorize
boolean categorize(JBitSet referencedTabs, boolean simplePredsOnly)
Categorize this predicate. Initially, this means building a bit map of the referenced tables for each predicate. If the source of this ColumnReference (at the next underlying level) is not a ColumnReference or a VirtualColumnNode then this predicate will not be pushed down. For example, in: select * from (select 1 from s) a (x) where x = 1 we will not push down x = 1. NOTE: It would be easy to handle the case of a constant, but if the inner SELECT returns an arbitrary expression, then we would have to copy that tree into the pushed predicate, and that tree could contain subqueries and method calls. RESOLVE - revisit this issue once we have views.- Specified by:
categorizein classJavaValueNode- Parameters:
referencedTabs- JBitSet with bit map of referenced FromTablessimplePredsOnly- Whether or not to consider method calls, field references and conditional nodes when building bit map- Returns:
- boolean Whether or not source.expression is a ColumnReference or a VirtualColumnNode.
- See Also:
ValueNode.categorize(org.apache.derby.iapi.util.JBitSet, boolean)
-
remapColumnReferencesToExpressions
JavaValueNode remapColumnReferencesToExpressions() throws StandardException
Remap all ColumnReferences in this tree to be clones of the underlying expression.- Specified by:
remapColumnReferencesToExpressionsin classJavaValueNode- Returns:
- JavaValueNode The remapped expression tree.
- Throws:
StandardException- Thrown on error- See Also:
ValueNode.remapColumnReferencesToExpressions()
-
getOrderableVariantType
int getOrderableVariantType()
Return the variant type for the underlying expression. The variant type can be: VARIANT - variant within a scan (method calls and non-static field access) SCAN_INVARIANT - invariant within a scan (column references from outer tables) QUERY_INVARIANT - invariant within the life of a query CONSTANT - constant- Overrides:
getOrderableVariantTypein classJavaValueNode- Returns:
- The variant type for the underlying expression.
-
generateExpression
void generateExpression(ExpressionClassBuilder acb, MethodBuilder mb) throws StandardException
Description copied from class:JavaValueNodeGeneral logic shared by Core compilation and by the Replication Filter compiler. Every child of ValueNode must implement one of these methods.- Specified by:
generateExpressionin classJavaValueNode- Parameters:
acb- The ExpressionClassBuilder for the class being builtmb- the method the expression will go into- Throws:
StandardException- Thrown on error- See Also:
QueryTreeNode.generate(org.apache.derby.impl.sql.compile.ActivationClassBuilder, org.apache.derby.iapi.services.compiler.MethodBuilder)
-
-