DDL commands generate a wrong number of warnings

Bug #255867 reported by Giuseppe Maxia
2
Affects Status Importance Assigned to Milestone
Drizzle
Fix Released
Undecided
Brian Aker

Bug Description

Mac OSX 10.5

Drizzle revision 266

compiled with
./config/autorun.sh && \
    ./configure --disable-fail \
   --prefix=$HOME/usr/local/drizzle \
    CFLAGS=-O3 CXXFLAGS=-O3 && \
    make && \
    make install

server started with
cd $HOME/usr/local/drizzle
./libexec/drizzled&

client started with
./bin/drizzle -h 127.0.0.1 -P 3306

any SQL command that creates or modifies data is followed by a mumber of fake warnings

drizzle>> create schema test;
Query OK, 1 row affected, 29184 warnings (0.00 sec)

drizzle>> use test
Database changed
drizzle>> show tables;
Empty set (0.00 sec)

drizzle>> create table t1 (i int);
Query OK, 0 rows affected, 29184 warnings (0.12 sec)

drizzle>> insert into t1 values (1);
Query OK, 1 row affected, 28160 warnings (0.00 sec)

drizzle>> show warnings;
Empty set (0.00 sec)

drizzle>> select 29160;
+-------+
| ? |
+-------+
| 29160 |
+-------+
1 row in set (0.01 sec)

description: updated
Revision history for this message
Giuseppe Maxia (giuseppe-maxia) wrote :

fixed in r279

Changed in drizzle:
status: New → Fix Released
Changed in drizzle:
assignee: nobody → Brian Aker (brianaker)
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.