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> select 1 from (select sleep(1)) t;
mysql> select 1 from (select sleep(1)) t; +---+ | 1 | +---+ | 1 | +---+ 1 row in set (1.00 sec)
mysql> select 1 from (select sleep(1)) t; +---+ | 1 | +---+ | 1 | +---+ 1 row in set (0.00 sec)
Notice the execution time, sleep(1) is not executed.
sleep(1)
tidb-server -V
select tidb_version();
sh> tidb-server -V Release Version: v4.0.0-alpha-142-g932c4a7bf-dirty Git Commit Hash: 932c4a7bfc3ad448a2d4c8d68acbb0264d9a588a Git Branch: master UTC Build Time: 2019-08-28 06:20:44 GoVersion: go version go1.12 linux/amd64 Race Enabled: false TiKV Min Version: v3.0.0-60965b00
The text was updated successfully, but these errors were encountered:
wjhuang2016
Successfully merging a pull request may close this issue.
Bug Report
Run SQLs like the following:
Notice the execution time,
sleep(1)
is not executed.tidb-server -V
or runselect tidb_version();
on TiDB)?The text was updated successfully, but these errors were encountered: