| Bug #4817 | embedded server, wrong output on --enable_metadata | ||
|---|---|---|---|
| Submitted: | 29 Jul 2004 22:26 | Modified: | 31 Jul 2004 18:28 |
| Reporter: | Matthias Leich | Email Updates: | |
| Status: | Closed | Impact on me: | |
| Category: | MySQL Server: Embedded Library ( libmysqld ) | Severity: | S3 (Non-critical) |
| Version: | 4.1 | OS: | |
| Assigned to: | Sergei Golubchik | CPU Architecture: | Any |
[30 Jul 2004 22:10]
Sergei Golubchik
fixed in 4.1.4
[31 Jul 2004 18:28]
Sergei Golubchik
Thank you for your bug report. This issue has been committed to our
source repository of that product and will be incorporated into the
next release.
If necessary, you can access the source repository and build the latest
available version, including the bugfix, yourself. More information
about accessing the source trees is available at
http://www.mysql.com/doc/en/Installing_source_tree.html

Description: The metadata output differs between the common server and the embedded server. Example: use test ; create table t1 ( a char(10)) ; --enable_metadata select * from t1 ; common server output (I deleted some values on the right side) --------------------------------------------------------------------------------- Catalog Database Table Table_alias Column Column_alias Name def test t1 t1 a a 254 /\ embedded server output ------------------------------- Catalog Database Table Table_alias Column Column_alias Name std test t1 t1 a a 254 /\ Why is there a difference "def" and "std" in the value of the column Catalog ? My environment: Intel PC with Linux(SuSE 9.0) MySQL 4.1 source distrib. (last bk pull 2004-07-28) How to repeat: Please use the statements above.