-
Notifications
You must be signed in to change notification settings - Fork 323
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
Enable SQLServer select columns #11270
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,9 +40,6 @@ type Feature | |
## PRIVATE | ||
currently blocks getting a DB_Column from a DB_Table, but will soon refine to operations on DB_Column. | ||
Column_Operations | ||
## PRIVATE | ||
set operations on tables. | ||
Set | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why is this flag no longer needed? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Set is a fairly basic operation that all dbs should be able to support from day 1. The only hard bit comes from all of the operations and we have a separate flagging system for these. is_operation_supported |
||
## PRIVATE | ||
get_row, take, drop, limit | ||
Sample | ||
|
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.
Why is this check no longer neeeded for any backend?
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.
Similar to the removal of set. All dialects should allow getting a column from a table. What you can do with that table is then limited by the operation flagging system.