We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
mysql> create global temporary table t1 (id int) on commit delete rows; Query OK, 0 rows affected (0.00 sec) mysql> show create table t1; +-------+-------------------------------------------------------------------------------------------------------------+ | Table | Create Table | +-------+-------------------------------------------------------------------------------------------------------------+ | t1 | CREATE TABLE `t1` ( `id` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin | +-------+-------------------------------------------------------------------------------------------------------------+ 1 row in set (0.00 sec)
The GLOBAL TEMPORARY ... ON COMMIT DELETE ROWS are missing.
GLOBAL TEMPORARY ... ON COMMIT DELETE ROWS
Note: we have to take the replication to downstream TiDB into consideration.
The text was updated successfully, but these errors were encountered:
ref #24169
Sorry, something went wrong.
tiancaiamao
No branches or pull requests
Development Task
The
GLOBAL TEMPORARY ... ON COMMIT DELETE ROWS
are missing.Note: we have to take the replication to downstream TiDB into consideration.
The text was updated successfully, but these errors were encountered: