You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by Apache Wiki <wi...@apache.org> on 2009/08/26 11:42:41 UTC

[Hadoop Wiki] Trivial Update of "Hbase/Jython" by AndreiSavu

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Hadoop Wiki" for change notification.

The following page has been changed by AndreiSavu:
http://wiki.apache.org/hadoop/Hbase/Jython

The comment on the change is:
fixed typo

------------------------------------------------------------------------------
  
  # Now fetch the content just added, returns a byte[]
  data_row = table.get(row, "content:")
- data = java.lang.String(data.value, "UTF8")
+ data = java.lang.String(data_row.value, "UTF8")
  
  print "The fetched row contains the value '%s'" % data