You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by Umesh Chaudhary <um...@jci.com> on 2014/03/17 10:09:04 UTC

Problem with TScan.StartRow

Hi,
Here I am facing a strange Problem with TScan.StartRow property with C# Thrift API
My problem is when I try to give the value as:

scanFilter.StartRow = Encoding.ASCII.GetBytes("25|China|South|China South Branch|Times Square|668|2013|07|21|PM");
scanFilter.EndRow = Encoding.ASCII.GetBytes("25|China|South|China South Branch|Times Square|668|2013|12|21|PM");

Here the string passed in GetBytes is my row-key, but I am getting no rows. Row key is still correct.

Please let me know if there is any other way to pass this startRow and EndRow.