Package org.apache.derby.impl.store.access.conglomerate

Examples of org.apache.derby.impl.store.access.conglomerate.OpenConglomerateScratchSpace


        // either use passed in "compiled" runtime scratch space, or create
        // new space.
        this.runtime_mem    =
            (dynamic_info != null ?
             ((OpenConglomerateScratchSpace) dynamic_info) :
             new OpenConglomerateScratchSpace(
                 conglomerate.format_ids,
                 conglomerate.collation_ids));

  }
View Full Code Here


     **/
    public DynamicCompiledOpenConglomInfo getDynamicCompiledConglomInfo(
    long        conglomId)
    throws StandardException
    {
        return(new OpenConglomerateScratchSpace(format_ids, collation_ids));
    }
View Full Code Here

   * @exception  StandardException  Standard exception policy.
     **/
    public DynamicCompiledOpenConglomInfo getDynamicCompiledConglomInfo()
    throws StandardException
    {
        return(new OpenConglomerateScratchSpace(format_ids, collation_ids));
    }
View Full Code Here

        // either use passed in "compiled" runtime scratch space, or create
        // new space.
        this.runtime_mem    =
            (dynamic_info != null ?
             ((OpenConglomerateScratchSpace) dynamic_info) :
             new OpenConglomerateScratchSpace(conglomerate.format_ids));

  }
View Full Code Here

     **/
    public DynamicCompiledOpenConglomInfo getDynamicCompiledConglomInfo(
    long        conglomId)
    throws StandardException
    {
        return(new OpenConglomerateScratchSpace(format_ids));
    }
View Full Code Here

     **/
    public DynamicCompiledOpenConglomInfo getDynamicCompiledConglomInfo(
    long        conglomId)
    throws StandardException
    {
        return(new OpenConglomerateScratchSpace(format_ids));
    }
View Full Code Here

   * @exception  StandardException  Standard exception policy.
     **/
    public DynamicCompiledOpenConglomInfo getDynamicCompiledConglomInfo()
    throws StandardException
    {
        return(new OpenConglomerateScratchSpace(
                format_ids, collation_ids, hasCollatedTypes));
    }
View Full Code Here

   * @exception  StandardException  Standard exception policy.
     **/
    public DynamicCompiledOpenConglomInfo getDynamicCompiledConglomInfo()
    throws StandardException
    {
        return(new OpenConglomerateScratchSpace(format_ids, collation_ids));
    }
View Full Code Here

        // either use passed in "compiled" runtime scratch space, or create
        // new space.
        this.runtime_mem    =
            (dynamic_info != null ?
             ((OpenConglomerateScratchSpace) dynamic_info) :
             new OpenConglomerateScratchSpace(
                 conglomerate.format_ids,
                 conglomerate.collation_ids));

  }
View Full Code Here

   * @exception  StandardException  Standard exception policy.
     **/
    public DynamicCompiledOpenConglomInfo getDynamicCompiledConglomInfo()
    throws StandardException
    {
        return(new OpenConglomerateScratchSpace(format_ids, collation_ids));
    }
View Full Code Here

TOP

Related Classes of org.apache.derby.impl.store.access.conglomerate.OpenConglomerateScratchSpace

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.