19 package testsuite.clusterj;
21 import testsuite.clusterj.model.AllPrimitives;
78 void createInstances(
int number) {
79 createAllPrimitivesInstances(10);
82 public void testBtreeEqualOrEqual() {
83 equalOrEqualQuery(
"int_not_null_btree", 4,
"int_null_none", 6,
"none", 4, 6);
84 equalOrEqualQuery(
"int_null_btree", 4,
"int_null_none", 6,
"none", 4, 6);
88 public void testHashEqualOrEqual() {
89 equalOrEqualQuery(
"int_not_null_hash", 4,
"int_null_both", 6,
"none", 4, 6);
90 equalOrEqualQuery(
"int_null_hash", 4,
"int_null_both", 6,
"none", 4, 6);
94 public void testBothEqualOrEqual() {
95 equalOrEqualQuery(
"int_not_null_both", 4,
"int_null_hash", 6,
"none", 4, 6);
96 equalOrEqualQuery(
"int_null_both", 4,
"int_null_hash", 6,
"none", 4, 6);
100 public void testNoneEqualOrEqual() {
101 equalOrEqualQuery(
"int_not_null_none", 4,
"int_null_btree", 6,
"none", 4, 6);
102 equalOrEqualQuery(
"int_null_none", 4,
"int_null_btree", 6,
"none", 4, 6);