-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
executor: support the SELECT INTO ... OUTFILE
syntax.
#14848
Conversation
Rest LGTM |
Thanks for your review @tiancaiamao , all comments have been addressed. |
PTAL @tiancaiamao @zz-jason |
LGTM |
@SunRunAway Thanks for your review, all comments have been addressed now~ PTAL |
Codecov Report
@@ Coverage Diff @@
## master #14848 +/- ##
===========================================
Coverage ? 80.2105%
===========================================
Files ? 501
Lines ? 130807
Branches ? 0
===========================================
Hits ? 104921
Misses ? 17585
Partials ? 8301 |
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
/run-all-tests |
Please add the release note section in the PR description. A PR of documentation is appreciated. |
…ny-repos/tidb into making-notes * 'making-notes' of https://github.com/mwish-pingcap-company-repos/tidb: planner: change DataSource's type name to 'DataSource' (pingcap#14768) expression: derive collation and charset information and support the Collation() builtin-func (pingcap#14905) util: introduce thread local pool (pingcap#14647) executor: support the `SELECT INTO ... OUTFILE` syntax. (pingcap#14848) expression: disable Duration/JSON related function push down to tiflash (pingcap#14861) planner: move flagPrunColumnsAgain to the last (pingcap#14791) exec: remove duplicate auto-generated test cases (pingcap#14910) planner: distinguish FullScan and the RangeScan in explain/desc info (pingcap#14696) Signed-off-by: mapleFU <1506118561@qq.com>
What problem does this PR solve?
Fix #11112.
Support the
SELECT INTO ... OUTFILE
syntax.What is changed and how it works?
SelectInto
to let our planner support this syntax;SelectIntoExec
;Check List
Tests