I've filled bug report 8355 at Mysql.org.

But I'm eager to hear other people's results from running your test suite. I have tested a few such as the MinMax test, and they don't work even after I fix the Create.sql script.

-winston


On Feb 6, 2005, at 11:42 PM, Chuck Esterbrook wrote:

mysql> use MKBasic
 mysql> select * from _MKClassIds;
 mysql> drop database if exists MKBasic;
 mysql> create database MKBasic;
 mysql> use MKBasic;
 mysql> show tables;
 Empty set (0.00 sec)

 At this point we have dropped and recreated the database.  As
 soon  as we recreate the table, the old data magically
 reappears:

 mysql> create table _MKClassIds (
 -> id int not null primary key,
 -> name varchar(100)
 -> );
 Query OK, 0 rows affected (0.00 sec)
 mysql> select * from _MKClassIds;
 +----+--------+
 | id | name   |
 +----+--------+
 |  1 | Thing  |
 |  2 | Person |
 +----+--------+

_________________________________________
winston wolff - (646) 827-2242 - http://www.stratolab.com - learning by creating




-------------------------------------------------------
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
_______________________________________________
Webware-devel mailing list
Webware-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/webware-devel

Reply via email to