I'm testing out the read_rows operation in the ruby sdk for bigtable.
I noticed that if i pass in a timestamp filter, it will only give me cells(columns) that were updated/created in that timeframe. Instead I would like the filter to give me the entire rows contents if a given row was updated within the specified timeframe. Is that a feature, and if so would could achieve that.
ex: i have a row with 'token' updated at time 3000, 'id' updated at time 3000, 'name' updated at time 3000, 'token' updated at time 7000.
i would like to query with timestamp filter 6000 to 8000, and have all cells returned, but only the most updated one. 'token' at time 7000, 'id' at time 3000, and 'name' at time 3000.