Selecting from table@index has different semantics than selecting from the table - we can only select the columns in the index and SELECT * resolves to only those columns. This feature is mildly useful for debugging but doesn't do much for a user.
I propose changing this to have the same semantics as the regular select, except that it forces index selection to choose that particular index. This would provide an easy workaround when the index selection algorithm doesn't identify the best index.
@petermattis - any objections?
Selecting from
table@indexhas different semantics than selecting from the table - we can only select the columns in the index andSELECT *resolves to only those columns. This feature is mildly useful for debugging but doesn't do much for a user.I propose changing this to have the same semantics as the regular select, except that it forces index selection to choose that particular index. This would provide an easy workaround when the index selection algorithm doesn't identify the best index.
@petermattis - any objections?