Report a bug

2003-02-15 Thread Pedro Vasconcelos
if you have a file NameOfFile.sql where you have a table named Aux and you try to create it using: mysql -u USER -p DATABASE NameOfFile.sql when it reaches the definition of table Aux, this will block the execution of the command.

Re: Report a bug

2003-02-15 Thread Paul DuBois
At 17:44 + 2/15/03, Pedro Vasconcelos wrote: if you have a file NameOfFile.sql where you have a table named Aux and you try to create it using: mysql -u USER -p DATABASE NameOfFile.sql when it reaches the definition of table Aux, this will block the execution of the command. I have no

Re: Report a bug

2003-02-15 Thread Pedro Vasconcelos
The NameOfFile.sql contains: # # Table structure for table 'Aux' # DROP TABLE IF EXISTS Aux; CREATE TABLE Aux ( PrecoBase decimal(40,2) default NULL ) TYPE=MyISAM; # # Dumping data for table 'Aux' # LOCK TABLES Aux WRITE; INSERT INTO Aux VALUES

Re: Report a bug

2003-02-15 Thread Paul DuBois
At 18:10 + 2/15/03, Pedro Vasconcelos wrote: The NameOfFile.sql contains: # # Table structure for table 'Aux' # DROP TABLE IF EXISTS Aux; CREATE TABLE Aux ( PrecoBase decimal(40,2) default NULL ) TYPE=MyISAM; # # Dumping data for table 'Aux' # LOCK TABLES Aux WRITE; INSERT INTO Aux

Re: Report a bug

2003-02-15 Thread Pedro Vasconcelos
It works fine on Unix. Is Aux a special filename in Windows? Not that i am aware of. Maybe you should try this on Windows. I could be just a problem on windows version. Thanks. On Sat, 15 Feb 2003, Paul DuBois wrote: At 18:10 + 2/15/03, Pedro Vasconcelos wrote: The NameOfFile.sql

Re: Report a bug

2003-02-15 Thread Jocelyn Fournier
, February 15, 2003 6:20 PM Subject: Re: Report a bug It works fine on Unix. Is Aux a special filename in Windows? Not that i am aware of. Maybe you should try this on Windows. I could be just a problem on windows version. Thanks. On Sat, 15 Feb 2003, Paul DuBois wrote: At 18:10 + 2

Re: Report a bug

2003-02-15 Thread Pedro Vasconcelos
Vasconcelos [EMAIL PROTECTED] To: Paul DuBois [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Saturday, February 15, 2003 6:20 PM Subject: Re: Report a bug It works fine on Unix. Is Aux a special filename in Windows? Not that i am aware of. Maybe you should try this on Windows. I could

Re[2]: Report a bug

2003-02-15 Thread Stefan Hinz
Paul, Pedro, INSERT INTO Aux VALUES (100.00),(100.11),(100.00),(100.22),(101.00),(102.00); It works fine on Unix. Is Aux a special filename in Windows? Good guess! Here's what I get: C:\mysql\binecho hallo aus C:\mysql\binecho hallo aux Zugriff verweigert This is access denied. Looks

Re: Report a bug

2003-02-15 Thread Don Read
On 15-Feb-2003 Jocelyn Fournier wrote: Hi, AFAIK, Aux is indeed a special filename in Windows (if I execute Aux under the W2K console, it opens the open with window). MS-DOS, actually. Unix has 3 pre-defined file streams: stdin, stdout, and stderr. MS-DOS has the same three, plus two

How to report MySQL bug

2002-11-15 Thread Allan
How do I report bugs in MySQL CC? I have seen a consistent bug in 85 and 86. Would like to report but not sure how?? Passion and Presence Allan Hardy - Before posting, please check: http://www.mysql.com/manual.php (the

Re: where to report a bug? (was: mysql from localhost vs. remote)

2002-02-16 Thread Michael Hoennig
Hi Benjamin, INSERT INTO mysql.db VALUES ('%','xyz00_%','xyz00','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'); Has the second line anything to do with the behaviour? It shouldn't as you use xyz00 below and user field will match only the user name 'xyz00_%'. nope, has nothing to do with the

where to report a bug? (was: mysql from localhost vs. remote)

2002-02-15 Thread Michael Hoennig
Hi mysql list members, Meanwhile I am pretty sure that this strange behaviour is a bug. But obviously I am blind. Where can mysql bugs be reportet? The strange behaviour is (I asked about it yestereday): We use the following statements to setup users and rigts for a mysql server which is

Re: where to report a bug? (was: mysql from localhost vs. remote)

2002-02-15 Thread Benjamin Pflugmann
Hi. On Sat, Feb 16, 2002 at 07:47:57AM +0100, [EMAIL PROTECTED] wrote: Hi mysql list members, Meanwhile I am pretty sure that this strange behaviour is a bug. But obviously I am blind. Where can mysql bugs be reportet? http://www.mysql.com/doc/B/u/Bug_reports.html The strange behaviour