Hello! This is my first time using a mailing list like this, apologies if I’ve missed something to conform to standards for it.
I’m using the Java API to interact with a data source that’s column-based, and expensive to request entire rows from. However, using the interface that my Table needs to implement to support updates, deletes, or merges, SupportsRowLevelOperations, it’s not clear if I can constrain the columns I have to read from my data-source. Ideally, I’d like to only read the column(s) I’m updating. Is this possible in the API? I haven’t been able to find a definitive answer to this in the API or looking online so far.