Hi Vaibhav, Actually I realized a while ago that there was a 0.19 incompatibility,,, I thought I had changed the wiki but maybe I forgot to. Thanks for bringing this to my attention; I'll try to take care of it shortly. Hope you found it useful :)
Thanks, -Tom On Thu, Mar 19, 2009 at 8:31 PM, Vaibhav Puranik <[email protected]> wrote: > Hi, > > I noticed that the class HBaseBuilder.java (The groovy DSL) is not compiling > with HBase 0.19. > > The following code block was not compiling: > > if ( admin.tableExists( tableName ) ) { > admin.modifyTableMeta( tableName.getBytes(), table ); > log.info( "Updated table: {}", table ); > } > > I changed it to > > if ( admin.tableExists( tableName ) ) { > admin.modifyTable( tableName.getBytes(), > HConstants.MODIFY_TABLE_SET_HTD, table ); > log.info( "Updated table: {}", table ); > } > > I am not sure about the change. I am attaching the file with this email (ext > changed to .txt from .java). > > Tom, is this change ok? If yes, is it possible for you to update it in the > HBase wiki? > > Regards, > Vaibhav >
