Class VTIContext


  • public class VTIContext
    extends java.lang.Object

    Context parameter which is passed to an AwareVTI.

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.String _statementText  
      private java.lang.String _vtiSchema  
      private java.lang.String _vtiTable  
    • Constructor Summary

      Constructors 
      Constructor Description
      VTIContext​(java.lang.String vtiSchema, java.lang.String vtiTable, java.lang.String statementText)
      Construct from pieces.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String statementText()
      Return the text of the statement which invoked the table function
      java.lang.String vtiSchema()
      Return the name of the schema holding the table function
      java.lang.String vtiTable()
      Return the unqualified table function name
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • _vtiSchema

        private java.lang.String _vtiSchema
      • _vtiTable

        private java.lang.String _vtiTable
      • _statementText

        private java.lang.String _statementText
    • Constructor Detail

      • VTIContext

        public VTIContext​(java.lang.String vtiSchema,
                          java.lang.String vtiTable,
                          java.lang.String statementText)

        Construct from pieces.

        Parameters:
        vtiSchema - Name of the schema holding the table function.
        vtiTable - Name of the table function.
        statementText - Text of the statement which is invoking the table function.
    • Method Detail

      • vtiSchema

        public java.lang.String vtiSchema()
        Return the name of the schema holding the table function
      • vtiTable

        public java.lang.String vtiTable()
        Return the unqualified table function name
      • statementText

        public java.lang.String statementText()
        Return the text of the statement which invoked the table function