main.create failing on Ubuntu 11.04
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Drizzle |
Confirmed
|
Low
|
Patrick Crews | ||
7.1 |
Confirmed
|
Low
|
Patrick Crews |
Bug Description
test main.create is failing on my 11.04 machine as follows:
main.create [ fail ]
drizzletest: At line 1187: query 'create database имя_базы_
The result from queries just before the failure was:
< snip >
CREATE TEMPORARY TABLE t2 (a int, b int, primary key (a));
CREATE TEMPORARY TABLE IF NOT EXISTS t2 (primary key (a)) select * from t1;
ERROR 23000: Duplicate entry '1' for key 'PRIMARY'
SELECT * from t2;
a b
TRUNCATE table t2;
INSERT INTO t2 select * from t1;
ERROR 23000: Duplicate entry '1' for key 'PRIMARY'
SELECT * from t2;
a b
drop table t1,t2;
CREATE DATABASE aaaaaaaaaaaaaaa
ERROR 42000: Incorrect schema name 'aaaaaaaaaaaaaa
DROP DATABASE aaaaaaaaaaaaaaa
ERROR 42000: Incorrect schema name 'aaaaaaaaaaaaaa
USE aaaaaaaaaaaaaaa
ERROR 42000: Incorrect schema name 'aaaaaaaaaaaaaa
SHOW CREATE DATABASE aaaaaaaaaaaaaaa
Database Create Database
create database имя_базы_
Changed in drizzle: | |
status: | New → Confirmed |
Found an issue with my machine that broke some other things, it is likely tied to this : / Running retest and leaving status as Confirmed until I see it pass.