Bug 3583 - В консоли неправильно выводит значения полей типа http://, и даже переставляет значения полей
Summary: В консоли неправильно выводит значения полей типа http://, и даже переставляе...
Status: CLOSED WORKSFORME
Alias: None
Product: Sisyphus
Classification: Development
Component: MySQL-server (show other bugs)
Version: unstable
Hardware: all Linux
: P2 normal
Assignee: Kachalov Anton
QA Contact: qa-sisyphus
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-02-04 15:56 MSK by Michael Bykov
Modified: 2005-07-13 15:45 MSD (History)
4 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Michael Bykov 2004-02-04 15:56:15 MSK
mysql>  select * from url;
| url           | filesize | id   |
+-------------------------------------+               
                |     2.17 |    1 |

mysql> select url from url where filesize=2.17;
| url                                  |
+--------------------------------------+
|http://www.umka.ru/mpeg/Ray/ray_09.mp3 

Через PHP значение выводится правильно. А в любой консоли
глючит. Мало того, переставляет местами поля: 

mysql> select url,id,filesize from url where filesize=2.17
| url             | id   | | filesize |
+--------------------------------
|    1 |     2.17 |/mpeg/Ray/ray_09.mp3


Steps to Reproduce:
1. Завести поле char (255). Поместить туда строку типа http:// 
2.
3.
Comment 1 Kachalov Anton 2004-02-05 17:49:15 MSK
У меня всё ок. А можно узнать вывод mysqldump -u... ваша_база url -d ?

mysql> insert into url set
filesize=2.17,url='http://итакдалее.ру//mpeg/Ray/ray_09.mp3';
Query OK, 1 row affected (0.01 sec)

mysql> select * from url;
+------------------------------------------+----+----------+
| url                                      | id | filesize |
+------------------------------------------+----+----------+
| http://итакдалее.ру//mpeg/Ray/ray_09.mp3 |  1 |     2.17 |
+------------------------------------------+----+----------+
1 row in set (0.00 sec)

mysql> select * from url where filesize=2.17;
+------------------------------------------+----+----------+
| url                                      | id | filesize |
+------------------------------------------+----+----------+
| http://итакдалее.ру//mpeg/Ray/ray_09.mp3 |  1 |     2.17 |
+------------------------------------------+----+----------+
1 row in set (0.00 sec)
mysql> select url,id,filesize from url where filesize=2.17;
+------------------------------------------+----+----------+
| url                                      | id | filesize |
+------------------------------------------+----+----------+
| http://итакдалее.ру//mpeg/Ray/ray_09.mp3 |  1 |     2.17 |
+------------------------------------------+----+----------+
Comment 2 inger@altlinux.org 2004-05-05 16:31:36 MSD
перевешено 
Comment 3 Kachalov Anton 2004-09-07 15:21:17 MSD
не воспроизводится