@@ -668,7 +668,7 @@ public void testGetRange() throws Exception {
668668
669669 // test get range each time with one primary key value range from INF_MIN to INF_MAX and other primary key in a specific value
670670 {
671- // test flag from INF_MIN to INF_MAX
671+ LOG . info ( " test flag from INF_MIN to INF_MAX" );
672672 int i = 3 ;
673673 RowPrimaryKey inclusiveStartPrimaryKey = getRowPrimaryKeys (i );
674674 RowPrimaryKey exclusiveEndPrimaryKey = getRowPrimaryKeys (i );
@@ -690,7 +690,7 @@ public void testGetRange() throws Exception {
690690 compareRow (result .getRows ().get (0 ), i , new String []{"uid" , "name" , "sid" , "flag" , "col_integer" , "col_string" , "col_boolean" , "col_double" , "col_binary" });
691691 }
692692 {
693- // test name from INF_MIN to INF_MAX
693+ LOG . info ( " test name from INF_MIN to INF_MAX" );
694694 int i = 3 ;
695695 RowPrimaryKey inclusiveStartPrimaryKey = getRowPrimaryKeys (i );
696696 RowPrimaryKey exclusiveEndPrimaryKey = getRowPrimaryKeys (i );
@@ -712,7 +712,7 @@ public void testGetRange() throws Exception {
712712 compareRow (result .getRows ().get (0 ), i , new String []{"uid" , "name" , "sid" , "flag" , "col_integer" , "col_string" , "col_boolean" , "col_double" , "col_binary" });
713713 }
714714 {
715- // test uid from INF_MIN to INF_MAX
715+ LOG . info ( " test uid from INF_MIN to INF_MAX" );
716716 int i = 0 ;
717717 RowPrimaryKey inclusiveStartPrimaryKey = getRowPrimaryKeys (i );
718718 RowPrimaryKey exclusiveEndPrimaryKey = getRowPrimaryKeys (i );
@@ -738,8 +738,8 @@ public void testGetRange() throws Exception {
738738 }
739739 }
740740
741- // test get range in primary keys all in different value
742741 {
742+ LOG .info ("test get range in primary keys all in different value" );
743743 int i = 0 ;
744744 RowPrimaryKey inclusiveStartPrimaryKey = getRowPrimaryKeys (i );
745745 RowPrimaryKey exclusiveEndPrimaryKey = getRowPrimaryKeys (i );
@@ -775,7 +775,7 @@ public void testGetRange() throws Exception {
775775
776776 // test get range with limit
777777 {
778- // test uid from INF_MIN to INF_MAX
778+ LOG . info ( " test uid from INF_MIN to INF_MAX" );
779779 int i = 0 ;
780780 RowPrimaryKey inclusiveStartPrimaryKey = getRowPrimaryKeys (i );
781781 RowPrimaryKey exclusiveEndPrimaryKey = getRowPrimaryKeys (i );
@@ -805,7 +805,7 @@ public void testGetRange() throws Exception {
805805
806806 // test get a large range, expect next start key is returned, and with next start key, we can read all rows in the range
807807 {
808- // test uid from INF_MIN to INF_MAX
808+ LOG . info ( " test uid from INF_MIN to INF_MAX" );
809809 int i = 0 ;
810810 RowPrimaryKey inclusiveStartPrimaryKey = getRowPrimaryKeys (i );
811811 RowPrimaryKey exclusiveEndPrimaryKey = getRowPrimaryKeys (i );
@@ -835,7 +835,7 @@ public void testGetRange() throws Exception {
835835
836836 // test get a large range with iterator, expect all rows in range is returned
837837 {
838- // test uid from INF_MIN to INF_MAX
838+ LOG . info ( " test uid from INF_MIN to INF_MAX" );
839839 int i = 0 ;
840840 RowPrimaryKey inclusiveStartPrimaryKey = getRowPrimaryKeys (i );
841841 RowPrimaryKey exclusiveEndPrimaryKey = getRowPrimaryKeys (i );
@@ -862,7 +862,7 @@ public void testGetRange() throws Exception {
862862
863863 // test get a large range with iterator, set limit, expect all rows in range is returned
864864 {
865- // test uid from INF_MIN to INF_MAX
865+ LOG . info ( " test uid from INF_MIN to INF_MAX" );
866866 int i = 0 ;
867867 RowPrimaryKey inclusiveStartPrimaryKey = getRowPrimaryKeys (i );
868868 RowPrimaryKey exclusiveEndPrimaryKey = getRowPrimaryKeys (i );
@@ -890,7 +890,7 @@ public void testGetRange() throws Exception {
890890 }
891891 }
892892 {
893- // test uid from INF_MIN to INF_MAX
893+ LOG . info ( " test uid from INF_MIN to INF_MAX" );
894894 int i = 0 ;
895895 RowPrimaryKey inclusiveStartPrimaryKey = getRowPrimaryKeys (i );
896896 RowPrimaryKey exclusiveEndPrimaryKey = getRowPrimaryKeys (i );
@@ -919,7 +919,7 @@ public void testGetRange() throws Exception {
919919 }
920920 }
921921 {
922- // test uid from INF_MIN to INF_MAX
922+ LOG . info ( " test uid from INF_MIN to INF_MAX" );
923923 int i = 0 ;
924924 RowPrimaryKey inclusiveStartPrimaryKey = getRowPrimaryKeys (i );
925925 RowPrimaryKey exclusiveEndPrimaryKey = getRowPrimaryKeys (i );
@@ -945,7 +945,7 @@ public void testGetRange() throws Exception {
945945 }
946946 }
947947 {
948- // test uid from INF_MIN to INF_MAX
948+ LOG . info ( " test uid from INF_MIN to INF_MAX" );
949949 int i = 0 ;
950950 RowPrimaryKey inclusiveStartPrimaryKey = getRowPrimaryKeys (i );
951951 RowPrimaryKey exclusiveEndPrimaryKey = getRowPrimaryKeys (i );
@@ -972,7 +972,7 @@ public void testGetRange() throws Exception {
972972 }
973973 }
974974 {
975- // test uid from INF_MIN to INF_MAX
975+ LOG . info ( " test uid from INF_MIN to INF_MAX" );
976976 int i = 0 ;
977977 RowPrimaryKey inclusiveStartPrimaryKey = getRowPrimaryKeys (i );
978978 RowPrimaryKey exclusiveEndPrimaryKey = getRowPrimaryKeys (i );
@@ -1001,8 +1001,8 @@ public void testGetRange() throws Exception {
10011001 }
10021002 }
10031003
1004- // test a really large data set
10051004 {
1005+ LOG .info ("test a really large data set" );
10061006 generateDataForTest (tableName , 1000 , 59999 );
10071007 // test uid from 1000 to 100001
10081008 RowPrimaryKey inclusiveStartPrimaryKey = getRowPrimaryKeys (0 );
0 commit comments