Is there a way to issue a delete using the server's current timestamp? I see methods using HConstants.LATEST_TIMESTAMP which is extremely expensive since it triggers a Get call. There are also methods where I can pass my own timestamp, but that leaves room for some pretty bad consistency errors if the clocks are different.
The comments at the top of Delete.java seem to indicate the functionality should exist. Am I just not seeing it? Thanks, Matt
