>Description:

this is how i find the bug.
  under the mysql console, i tried to drop a table, and i know that the mysql console 
do the same thing like bash 
  some of the command ... <TAB><TAB> and the command autocomplets. OK .. let me show

mysql> drop table categor;
categories                   categories.checked_out       categories.ordering          
categoryid
categories.categoryid        categories.checked_out_time  categories.published         
categoryimage
categories.categoryimage     categories.editor            categories.section           
categoryname
categories.categoryname      categories.image_position    category                     

the strange thing is in the end

The table ...

CREATE TABLE categories (
  categoryid int(11) NOT NULL auto_increment,
  categoryname text NOT NULL,
  categoryimage varchar(50) default NULL,
  section varchar(20) NOT NULL default '',
  image_position varchar(20) default NULL,
  published int(11) NOT NULL default '0',
  checked_out int(11) NOT NULL default '0',
  checked_out_time time NOT NULL default '00:00:00',
  editor varchar(50) default NULL,
  ordering int(11) NOT NULL default '0',
  PRIMARY KEY  (categoryid),
  UNIQUE KEY categoryid (categoryid),
  KEY categoryid_2 (categoryid)
) TYPE=MyISAM;



>How-To-Repeat:
create database
insert this table struct
write on the console -> drop table categor<TAB><TAB>


>Fix:
dunno


>Submitter-Id:  <submitter ID>
>Originator:    Delfim Machado
>Organization:
  -·-·-·-
  Delfim Machado - [EMAIL PROTECTED]
  XPTO:: Portuguese OpenSource Comunity - http://www.xpto.org
  
  - \ The Fortune Game / -
  TeX is potentially the most significant invention in typesetting in this
  century.  It introduces a standard language for computer typography, and in
  terms of importance could rank near the introduction of the Gutenberg press.
                -- Gordon Bell
>
>MySQL support: none 
>Synopsis:      mysql console - bad show <tab><tab>
>Severity:      non-critical
>Priority:      low
>Category:      mysql
>Class:         change-request
>Release:       mysql-3.23.43 (Source distribution)
>Server: /servers/mysql/bin/mysqladmin  Ver 8.21 Distrib 3.23.43, for pc-linux-gnu on 
>i686
Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL license

Server version          3.23.43-log
Protocol version        10
Connection              Localhost via UNIX socket
UNIX socket             /tmp/mysql.sock
Uptime:                 58 min 16 sec

Threads: 2  Questions: 4128  Slow queries: 0  Opens: 86  Flush tables: 1  Open tables: 
20 Queries per second avg: 1.181
>Environment:
        
System: Linux amok 2.4.7-10custom #4 Wed Oct 24 15:40:57 WEST 2001 i686 unknown
Architecture: i686

Some paths:  /usr/bin/perl /usr/bin/make /usr/bin/gmake /usr/bin/gcc /usr/bin/cc
GCC: Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-98)
Compilation info: CC='gcc'  CFLAGS=''  CXX='c++'  CXXFLAGS=''  LDFLAGS=''
LIBC: 
lrwxrwxrwx    1 root     root           13 Oct 23 18:49 /lib/libc.so.6 -> libc-2.2.4.so
-rwxr-xr-x    1 root     root      1282588 Sep  4 20:49 /lib/libc-2.2.4.so
-rw-r--r--    1 root     root     27304836 Sep  4 20:34 /usr/lib/libc.a
-rw-r--r--    1 root     root          178 Sep  4 20:34 /usr/lib/libc.so
Configure command: ./configure  --with-innodb --prefix=/servers/mysql


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to