Bug #94368 | show errors from previous MySQL operation | ||
---|---|---|---|
Submitted: | 17 Feb 2019 17:21 | Modified: | 18 Feb 2019 9:34 |
Reporter: | PRABHU R | Email Updates: | |
Status: | Duplicate | Impact on me: | |
Category: | MySQL Server: DML | Severity: | S2 (Serious) |
Version: | 8 | OS: | Windows |
Assigned to: | CPU Architecture: | Other |
[17 Feb 2019 17:21]
PRABHU R
[17 Feb 2019 17:27]
PRABHU R
Bug #94366 : Last Call marked as not bug...
[18 Feb 2019 9:34]
MySQL Verification Team
I quickly tried on latest GA build, I'm not seeing any issues. -- 8.0.15 mysql> show variables like '%version%'; +--------------------------+------------------------------+ | Variable_name | Value | +--------------------------+------------------------------+ | immediate_server_version | 999999 | | innodb_version | 8.0.15 | | original_server_version | 999999 | | protocol_version | 10 | | slave_type_conversions | | | tls_version | TLSv1,TLSv1.1,TLSv1.2 | | version | 8.0.15 | | version_comment | MySQL Community Server - GPL | | version_compile_machine | x86_64 | | version_compile_os | linux-glibc2.12 | | version_compile_zlib | 1.2.11 | +--------------------------+------------------------------+ 11 rows in set (0.01 sec) mysql> SELECT * FROM unknown_table; ERROR 1146 (42S02): Table 'sbtest.unknown_table' doesn't exist mysql> SELECT @@error_count; +---------------+ | @@error_count | +---------------+ | 1 | +---------------+ 1 row in set (0.00 sec) mysql> SELECT 1; +---+ | 1 | +---+ | 1 | +---+ 1 row in set (0.00 sec) mysql> SELECT @@error_count; +---------------+ | @@error_count | +---------------+ | 0 | +---------------+ 1 row in set (0.00 sec) - 5.7.25 bin/mysql -uroot -S /tmp/mysql_ushastry.sock Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.7.25 MySQL Community Server (GPL) Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> create database test; Query OK, 1 row affected (0.00 sec) mysql> use test Database changed mysql> SELECT * FROM unknown_table; ERROR 1146 (42S02): Table 'test.unknown_table' doesn't exist mysql> SELECT @@error_count; +---------------+ | @@error_count | +---------------+ | 1 | +---------------+ 1 row in set (0.00 sec) mysql> SELECT 1; +---+ | 1 | +---+ | 1 | +---+ 1 row in set (0.00 sec) mysql> SELECT @@error_count; +---------------+ | @@error_count | +---------------+ | 0 | +---------------+ 1 row in set (0.00 sec) Thank you for your interest in MySQL.