-
Notifications
You must be signed in to change notification settings - Fork 490
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
Fix TiDB behavior: temporary table #609
Labels
good first issue
Good for newcomers
Comments
11 tasks
I think that this can be added to the list of noop functions here: https://docs.pingcap.com/tidb/dev/system-variables#tidb_enable_noop_functions-new-in-v40 |
nayuta-yanagisawa
added a commit
to nayuta-yanagisawa/docs
that referenced
this issue
Feb 27, 2021
11 tasks
nayuta-yanagisawa
added a commit
to nayuta-yanagisawa/docs
that referenced
this issue
Feb 28, 2021
nayuta-yanagisawa
added a commit
to nayuta-yanagisawa/docs
that referenced
this issue
Feb 28, 2021
nayuta-yanagisawa
added a commit
to nayuta-yanagisawa/docs
that referenced
this issue
Feb 28, 2021
TomShawn
added a commit
to pingcap/docs
that referenced
this issue
Mar 4, 2021
* Update doc according to pingcap/tidb#22860 pingcap/parser#609 pingcap/tidb#22860 * Update sql-statements/sql-statement-create-table.md Co-authored-by: TomShawn <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Index issue: #598
SQL example
CREATE TEMPORARY TABLE t (a INT); DROP TEMPORARY TABLE t;
Current implementation
Both
CreateTableStmt.IsTemporary
andDropTableStmt.IsTemporary
are ignored by TiDB.Expected implementation
Report an error like
ErrUnsupportedTempTable
.The text was updated successfully, but these errors were encountered: