| java.lang.Object org.apache.derbyTesting.unitTests.store.T_QualifierTest
T_QualifierTest | public class T_QualifierTest (Code) | | |
Method Summary | |
public static boolean | t_scan(TransactionController tc, long conglomid, DataValueDescriptor[] init_scan_template, DataValueDescriptor[] fetch_template, DataValueDescriptor[] start_key, int start_op, Qualifier qualifier, DataValueDescriptor[] stop_key, int stop_op, int expect_numrows, int lowest_expect_key, int order) Test a single scan. | public static boolean | t_scanFetchHashtable(TransactionController tc, long conglomid, DataValueDescriptor[] fetch_template, DataValueDescriptor[] start_key, int start_op, Qualifier qualifier, DataValueDescriptor[] stop_key, int stop_op, int expect_numrows, int input_expect_key, int order) Test scan which does FetchSet. | public static boolean | t_scanFetchNext(TransactionController tc, long conglomid, DataValueDescriptor[] init_scan_template, DataValueDescriptor[] fetch_template, DataValueDescriptor[] start_key, int start_op, Qualifier qualifier, DataValueDescriptor[] stop_key, int stop_op, int expect_numrows, int input_expect_key, int order) Test scan which does FetchNext with all of the fields. | public static boolean | t_scanFetchNextGroup(TransactionController tc, int group_size, long conglomid, DataValueDescriptor[] fetch_template, DataValueDescriptor[] start_key, int start_op, Qualifier qualifier, DataValueDescriptor[] stop_key, int stop_op, int expect_numrows, int input_expect_key, int order) Test scan which does FetchNextGroup with all of the fields. | public static boolean | t_scanFetchNextPartial(TransactionController tc, long conglomid, DataValueDescriptor[] fetch_template, DataValueDescriptor[] start_key, int start_op, Qualifier qualifier, DataValueDescriptor[] stop_key, int stop_op, int expect_numrows, int input_expect_key, int order) Test scan which does FetchNext with subset of fields. | public boolean | t_testqual(TransactionController tc) |
ORDER_BACKWARD | final public static int ORDER_BACKWARD(Code) | | |
ORDER_DESC | final public static int ORDER_DESC(Code) | | |
ORDER_FORWARD | final public static int ORDER_FORWARD(Code) | | |
ORDER_NONE | final public static int ORDER_NONE(Code) | | |
t_scan | public static boolean t_scan(TransactionController tc, long conglomid, DataValueDescriptor[] init_scan_template, DataValueDescriptor[] fetch_template, DataValueDescriptor[] start_key, int start_op, Qualifier qualifier, DataValueDescriptor[] stop_key, int stop_op, int expect_numrows, int lowest_expect_key, int order) throws StandardException, T_Fail(Code) | | Test a single scan.
|
t_scanFetchHashtable | public static boolean t_scanFetchHashtable(TransactionController tc, long conglomid, DataValueDescriptor[] fetch_template, DataValueDescriptor[] start_key, int start_op, Qualifier qualifier, DataValueDescriptor[] stop_key, int stop_op, int expect_numrows, int input_expect_key, int order) throws StandardException, T_Fail(Code) | | Test scan which does FetchSet.
FetchSet() returns the entire result set in the hash table.
Whether the test succeeded or not. exception: StandardException - Standard exception policy. |
t_scanFetchNext | public static boolean t_scanFetchNext(TransactionController tc, long conglomid, DataValueDescriptor[] init_scan_template, DataValueDescriptor[] fetch_template, DataValueDescriptor[] start_key, int start_op, Qualifier qualifier, DataValueDescriptor[] stop_key, int stop_op, int expect_numrows, int input_expect_key, int order) throws StandardException, T_Fail(Code) | | Test scan which does FetchNext with all of the fields.
FetchNext() may be optimized by the underlying scan code to try and
not do multiple fetches of the same row for the user, but if the user
asks for one column, but the stop position depends on the whole row
this optimization is not possible.
Whether the test succeeded or not. exception: StandardException - Standard exception policy. |
t_scanFetchNextGroup | public static boolean t_scanFetchNextGroup(TransactionController tc, int group_size, long conglomid, DataValueDescriptor[] fetch_template, DataValueDescriptor[] start_key, int start_op, Qualifier qualifier, DataValueDescriptor[] stop_key, int stop_op, int expect_numrows, int input_expect_key, int order) throws StandardException, T_Fail(Code) | | Test scan which does FetchNextGroup with all of the fields.
Whether the test succeeded or not. exception: StandardException - Standard exception policy. |
t_scanFetchNextPartial | public static boolean t_scanFetchNextPartial(TransactionController tc, long conglomid, DataValueDescriptor[] fetch_template, DataValueDescriptor[] start_key, int start_op, Qualifier qualifier, DataValueDescriptor[] stop_key, int stop_op, int expect_numrows, int input_expect_key, int order) throws StandardException, T_Fail(Code) | | Test scan which does FetchNext with subset of fields.
FetchNext() may be optimized by the underlying scan code to try and
not do multiple fetches of the same row for the user, but if the user
asks for one column, but the stop position depends on the whole row
this optimization is not possible.
Whether the test succeeded or not. exception: StandardException - Standard exception policy. |
|
|