Hey Edward!
s.addColumn( Bytes.toBytes("anchor"), Bytes.toBytes("anchor") );
this looks for "anchor:anchor", which I don't see
s.addColumn( Bytes.toBytes("anchor"), Bytes.toBytes("anchor:Alverta Angstrom
cathodegraph") );
this looks for "anchor:anchor:Alverta Angstrom cathodegraph" which I don't
see
s.addColumn( Bytes.toBytes("anchor"), Bytes.toBytes("Alverta Angstrom
cathodegraph") );
this looks for "anchor:Alverta Angstrom cathodegraph", this should work, not
sure why it isn't
would recommend to check the KeyValue being returned from the family scan
and compare it
to what you are adding to your scanner, might be some weirdness with the
spaces.
Regards Erik