Code review comment for lp:~stewart/drizzle/bug911643

Revision history for this message
Mark Atwood (fallenpegasus) wrote :

Fails in Jenkins build testing

http://jenkins.drizzle.org/view/Drizzle-build/job/drizzle-build-ubuntu10.10-32bit/1168/console

main.drizzledump_restore [ fail ]
ERROR 1006 (HY000) at line 11: Can't create schema 'test' (errno: 17)
drizzletest: At line 123: command "$DRIZZLE < $drizzledumpfile" failed

The result from queries just before the failure was:
< snip >
#
# Bug#550091 in Drizzle: "drizzledump dumps data_dictionary"
#
CREATE TABLE t1 (a char(100), b int);
INSERT INTO t1 values ('a',100);
INSERT INTO t1 values ('b',200);
CREATE SCHEMA drizzledump_test;
USE drizzledump_test;
CREATE TABLE t1 (a int, b char(100));
INSERT INTO t1 VALUES (1, 'abbazabba');
DROP original schemas
DROP DATABASE test;
DROP DATABASE drizzledump_test;
Ensure we don't have those tables (verify we restored something)
SELECT * FROM test.t1;
Got one of the listed errors
SELECT * FROM drizzledump_test.t1;
Got one of the listed errors
Restoring from dumpfile
exec of './tests/var/../../client/drizzle --no-defaults --host=localhost --user=root --password= --port=9090 < /home/hudson/hudson/workspace/drizzle-build-ubuntu10.10-32bit/drizzle7-2011.11.29.2488/_build/tests/var/tmp/drizzledumpfile.sql' failed, error: 256, status: 1, errno: 11

More results from queries before failure can be found in /home/hudson/hudson/workspace/drizzle-build-ubuntu10.10-32bit/drizzle7-2011.11.29.2488/_build/tests/var/log/drizzledump_restore.log

Stopping All Servers
Restoring snapshot of databases
Resuming Tests

review: Needs Fixing

« Back to merge proposal