-
-
Notifications
You must be signed in to change notification settings - Fork 528
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
partition ranges, covering indexes, smarter iterators #1116
Conversation
…these in the future
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LG, just a few small comments
return nil, errors.New("unknown partition type") | ||
} | ||
|
||
func (t *WritableIndexedDoltTable) WithProjection(colNames []string) sql.Table { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should probably return a copy of the table, rather than just modifying in place
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I do this in a bunch of places with the system tables. Any particular reason you think I should return a copy?
rowSize int | ||
} | ||
|
||
// NewKVToSqlRowConverterForCols returns a KVToSqlConverter instance based on the list of rows passed in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/rows/columns
No description provided.