Bug #14337 | (proc/func table != myisam) => unreliable results | ||
---|---|---|---|
Submitted: | 26 Oct 2005 17:23 | Modified: | 27 Oct 2005 19:34 |
Reporter: | Wojciech Hlibowicki | Email Updates: | |
Status: | Unsupported | Impact on me: | |
Category: | MySQL Server | Severity: | S3 (Non-critical) |
Version: | 5.0.15 | OS: | Linux (Linux (Fedora)) |
Assigned to: | CPU Architecture: | Any |
[26 Oct 2005 17:23]
Wojciech Hlibowicki
[26 Oct 2005 17:24]
Wojciech Hlibowicki
Here are the results I get for the last two selects: Database changed mysql> select foo2(); +--------+ | foo2() | +--------+ | 0 | +--------+ 1 row in set (0.00 sec) mysql> select foo(); +-------+ | foo() | +-------+ | 0 | +-------+ 1 row in set (0.00 sec)
[26 Oct 2005 23:12]
Jorge del Conde
I was able to repeat this using 5.0.16bk: mysql> select foo(); +-------+ | foo() | +-------+ | 0 | +-------+ 1 row in set (0.00 sec) mysql> select foo2(); +--------+ | foo2() | +--------+ | 0 | +--------+ 1 row in set (0.00 sec)
[27 Oct 2005 19:34]
Sergei Golubchik
Having system tables in anything but MyISAM is not supported.
[27 Oct 2005 19:45]
Wojciech Hlibowicki
Then perhaps disable the ability to convert system tables to anything other than MyISAM?