1 21 22 package org.apache.derby.iapi.store.access; 23 24 import org.apache.derby.iapi.error.StandardException; 25 26 import org.apache.derby.iapi.types.DataValueDescriptor; 27 28 39 40 import java.util.Properties ; 41 42 public interface SortCostController 43 { 44 53 void close(); 54 55 56 118 119 double getSortCost( 120 DataValueDescriptor[] template, 121 ColumnOrdering columnOrdering[], 122 boolean alreadyInOrder, 123 long estimatedInputRows, 124 long estimatedExportRows, 125 int estimatedRowSize) 126 throws StandardException; 127 128 } 129 | Popular Tags |