See <http://hudson.drizzle.org/job/drizzle-build-OSX/1020/>

------------------------------------------
[...truncated 5428 lines...]
  `d1` INT NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`d1`)
) ENGINE=InnoDB COLLATE = utf8_general_ci AUTO_INCREMENT=3
INSERT INTO t1 VALUES(null);
SELECT * FROM t1;
d1
1
2
3
4
DROP TABLE t1;

More results from queries before failure can be found in 
<http://hudson.drizzle.org/job/drizzle-build-OSX/ws/tests/var/log/innodb-autoinc-44030.log>

Stopping All Servers
Restoring snapshot of databases
Resuming Tests

innobase.innodb-autoinc                                      [ pass ]      75
innobase.innodb-semi-consistent                              [ fail ]
drizzletest: At line 8: query 'SET GLOBAL innodb_lock_wait_timeout=2' failed: 
20: drizzle_state_read:lost connection to server (EOF)

The result from queries just before the failure was:
drop table if exists t1;
SET @orig_lock_wait_timeout= @@innodb_lock_wait_timeout;
SET GLOBAL innodb_lock_wait_timeout=2;

More results from queries before failure can be found in 
<http://hudson.drizzle.org/job/drizzle-build-OSX/ws/tests/var/log/innodb-semi-consistent.log>

Stopping All Servers
Restoring snapshot of databases
Resuming Tests

innobase.innodb-system-table-view                            [ pass ]      59
innobase.innodb                                              [ fail ]
drizzletest: At line 15: query 'SET GLOBAL innodb_lock_wait_timeout=2' failed: 
20: drizzle_state_read:lost connection to server (EOF)

The result from queries just before the failure was:
SET @orig_lock_wait_timeout= @@innodb_lock_wait_timeout;
SET GLOBAL innodb_lock_wait_timeout=2;

More results from queries before failure can be found in 
<http://hudson.drizzle.org/job/drizzle-build-OSX/ws/tests/var/log/innodb.log>

Stopping All Servers
Restoring snapshot of databases
Resuming Tests

innobase.innodb_autoinc_lock_mode_zero                       [ pass ]      30
innobase.innodb_bug38999                                     [ pass ]       9
innobase.innodb_bug47621                                     [ pass ]      34
innobase.innodb_bug47622                                     [ pass ]     140
innobase.innodb_bug48024                                     [ pass ]      15
innobase.innodb_bug49164                                     [ pass ]      25
innobase.innodb_bug51378                                     [ pass ]      35
innobase.innodb_bug51920                                     [ pass ]     383
innobase.innodb_bug52663                                     [ pass ]    2958
innobase.innodb_bug53290                                     [ pass ]    1571
innobase.innodb_bug53591                                     [ fail ]
drizzletest: At line 8: query 'SET GLOBAL innodb_file_per_table=on' failed: 20: 
drizzle_state_read:lost connection to server (EOF)

The result from queries just before the failure was:
SET GLOBAL innodb_file_format='Barracuda';
SET GLOBAL innodb_file_per_table=on;

More results from queries before failure can be found in 
<http://hudson.drizzle.org/job/drizzle-build-OSX/ws/tests/var/log/innodb_bug53591.log>

Stopping All Servers
Restoring snapshot of databases
Resuming Tests

innobase.innodb_bug53592                                     [ pass ]      55
innobase.innodb_bug53674                                     [ pass ]       4
innobase.innodb_bug53756                                     [ skipped ]   Test 
need debug binaries
innobase.innodb_bug54044                                     [ pass ]       2
innobase.innodb_bug54453                                     [ pass ]       4
innobase.innodb_bug55580                                     [ pass ]       9
innobase.innodb_bug56143                                     [ pass ]    1770
innobase.innodb_bug56716                                     [ pass ]      20
innobase.innodb_bug57255                                     [ pass ]     111
innobase.innodb_cmp                                          [ pass ]      14
innobase.innodb_cmp_reset                                    [ pass ]       2
innobase.innodb_cmpmem                                       [ pass ]       1
innobase.innodb_cmpmem_reset                                 [ pass ]       2
innobase.innodb_lock_waits                                   [ pass ]      20
innobase.innodb_locks                                        [ pass ]      14
innobase.innodb_mysql                                        [ fail ]
drizzletest: In included file "../tests/include/mix1.inc": At line 29: query 
'SET @orig_lock_wait_timeout= @@innodb_lock_wait_timeout' failed: 20: 
drizzle_state_read:lost connection to server (EOF)

The result from queries just before the failure was:
set global innodb_support_xa=default;
SET SESSION STORAGE_ENGINE = InnoDB;
SET @orig_lock_wait_timeout= @@innodb_lock_wait_timeout;

More results from queries before failure can be found in 
<http://hudson.drizzle.org/job/drizzle-build-OSX/ws/tests/var/log/innodb_mysql.log>

Stopping All Servers
Restoring snapshot of databases
Resuming Tests

innobase.innodb_notembedded                                  [ pass ]      23
innobase.innodb_status                                       [ pass ]       2
innobase.innodb_trx                                          [ pass ]     105
innobase.innodb_trx_weight                                   [ pass ]     871
innobase.join_outer_innodb                                   [ pass ]      22
innobase.loaddata_autocom_innodb                             [ pass ]      44
innobase.parser_bug21114_innodb                              [ pass ]    1302
innobase.rowid_order_innodb                                  [ pass ]      51
innobase.slap                                                [ pass ]     666
innobase.subselect_innodb                                    [ pass ]      94
innobase.table_name_dictionary                               [ pass ]      28
innobase.unsafe_binlog_innodb                                [ fail ]
drizzletest: In included file "../tests/include/unsafe_binlog.inc": At line 
175: query 'SET SESSION TRANSACTION ISOLATION LEVEL SERIALIZABLE' failed: 20: 
drizzle_state_read:lost connection to server (EOF)

The result from queries just before the failure was:
< snip >
insert into t2 values (8,6),(12,1),(3,1);
create table t3(d int not null, b int, primary key(d)) engine = InnoDB;
insert into t3 values (8,6),(12,1),(3,1);
create table t5(a int not null, b int, primary key(a)) engine = InnoDB;
insert into t5 values (1,2),(5,3),(4,2);
create table t6(d int not null, e int, primary key(d)) engine = InnoDB;
insert into t6 values (8,6),(12,1),(3,1);
create table t8(a int not null, b int, primary key(a)) engine = InnoDB;
insert into t8 values (1,2),(5,3),(4,2);
create table t9(d int not null, e int, primary key(d)) engine = InnoDB;
insert into t9 values (8,6),(12,1),(3,1);
commit;
set autocommit = 0;
select * from t2 for update;
a       b
3       1
8       6
12      1
set autocommit = 0;
SET SESSION TRANSACTION ISOLATION LEVEL SERIALIZABLE;

More results from queries before failure can be found in 
<http://hudson.drizzle.org/job/drizzle-build-OSX/ws/tests/var/log/unsafe_binlog_innodb.log>

Stopping All Servers
Restoring snapshot of databases
Resuming Tests

information_schema_dictionary.key_column_usage               [ pass ]     127
information_schema_dictionary.referential_constraints        [ pass ]      56
information_schema_dictionary.schemata                       [ pass ]      33
information_schema_dictionary.show_create_table              [ pass ]      26
information_schema_dictionary.slap                           [ pass ]    3205
information_schema_dictionary.table_constraints              [ pass ]    1236
information_schema_dictionary.tables                         [ pass ]      51
hello_world.hello_world                                      [ pass ]      13
hello_events.dml                                             [ pass ]      23
hello_events.loaded                                          [ pass ]      18
hello_events.schema                                          [ pass ]      18
hello_events.session                                         [ pass ]      34
hello_events.table                                           [ pass ]      32
function_dictionary.functions                                [ pass ]      16
filtered_replicator.filtered_replicator                      [ fail ]
drizzletest: At line 18: query 'set global 
filtered_replicator_filteredtables=t2' failed: 20: drizzle_state_read:lost 
connection to server (EOF)

The result from queries just before the failure was:
set global filtered_replicator_filteredtables=t2;

More results from queries before failure can be found in 
<http://hudson.drizzle.org/job/drizzle-build-OSX/ws/tests/var/log/filtered_replicator.log>

Stopping All Servers
Restoring snapshot of databases
Resuming Tests

filesystem_engine.basic_create_table                         [ pass ]      27
filesystem_engine.basic_delete                               [ pass ]       6
filesystem_engine.basic_insert                               [ pass ]       4
filesystem_engine.basic_select                               [ pass ]      18
filesystem_engine.basic_update                               [ pass ]       5
filesystem_engine.multiple_update                            [ pass ]     279
filesystem_engine.rnd_pos                                    [ pass ]      26
filesystem_engine.select_big_file                            [ pass ]      37
filesystem_engine.select_chop_line                           [ pass ]       3
filesystem_engine.select_cpuinfo                             [ pass ]       5
filesystem_engine.select_meminfo                             [ pass ]     163
filesystem_engine.select_separator_mode_weak                 [ pass ]       3
filesystem_engine.select_short_line                          [ pass ]       2
filesystem_engine.select_skip_blank_line                     [ pass ]       2
filesystem_engine.select_with_escaped_character              [ pass ]       3
filesystem_engine.select_with_omit_field                     [ pass ]      24
filesystem_engine.select_with_separators                     [ pass ]       4
error_dictionary.main                                        [ pass ]      40
errmsg_stderr.stderr                                         [ pass ]      48
debug.assert                                                 [ pass ]      18
csv.alter_table                                              [ pass ]    1317
csv.basic                                                    [ pass ]    5583
csv.bool_type                                                [ pass ]      31
csv.not_null                                                 [ pass ]     884
csv.uuid_type                                                [ pass ]     288
crc32.crc32                                                  [ pass ]      26
collation_dictionary.data_dictionary                         [ pass ]      26
collation_dictionary.slap                                    [ pass ]     157
blackhole.blackhole                                          [ pass ]      28
blackhole.create_max_fields                                  [ pass ]     404
auth_test.basic                                              [ pass ]      26
auth_file.basic                                              [ pass ]      75
archive.aio_posix                                            [ fail ]
drizzletest: At line 10: query 'SET GLOBAL archive_aio=ON' failed: 1232: 
Incorrect argument type to variable 'storage_engine'

The result from queries just before the failure was:
DROP TABLE if exists t1,t2,t3,t4,t5,t6;
SET storage_engine=ARCHIVE;
SET GLOBAL archive_aio=ON;

More results from queries before failure can be found in 
<http://hudson.drizzle.org/job/drizzle-build-OSX/ws/tests/var/log/aio_posix.log>

Stopping All Servers
Restoring snapshot of databases
Resuming Tests

archive.basic                                                [ pass ]     198
archive.bool_type                                            [ pass ]      22
archive.discover                                             [ pass ]     212
archive.engine                                               [ fail ]
drizzletest: At line 11: query 'SET GLOBAL archive_aio=OFF' failed: 1286: 
Unknown table engine 'OFF'

The result from queries just before the failure was:
DROP TABLE if exists t1,t2,t3,t4,t5,t6;
SET storage_engine=ARCHIVE;
SET GLOBAL archive_aio=OFF;

More results from queries before failure can be found in 
<http://hudson.drizzle.org/job/drizzle-build-OSX/ws/tests/var/log/engine.log>

Stopping All Servers
Restoring snapshot of databases
Resuming Tests

archive.uuid_type                                            [ pass ]      23
--------------------------------------------------------------------------------
Stopping All Servers
Failed 59/499 tests, 88.18% were successful.

The log files in var/log may give you some hint
of what went wrong.
If you want to report this error, go to:
        http://bugs.launchpad.net/drizzle
The servers were restarted 135 times
Spent 261.480 of 783 seconds executing testcases

drizzle-test-run in default mode: *** Failing the test(s): main.count_distinct3 
main.create main.ctype_utf8 main.data_dictionary_like_info main.drizzledump 
main.drizzledump_restore main.func_gconcat main.func_group main.func_in 
main.func_str main.greedy_optimizer main.information_schema 
main.information_schema_inno main.join_outer main.loaddata main.olap 
main.order_by main.parser main.savepoints main.select_safe main.small_tmp_table 
main.status main.subselect main.subselect_mat main.subselect_sj2 
main.type_decimal main.type_newdecimal main.type_timestamp main.union 
main.user_var main.variables main.warnings user_locks.create_barrier 
user_locks.kill_wait user_locks.signal_count user_locks.wait 
transaction_log.auto_commit transaction_log.rollback 
transaction_log.select_for_update transaction_log.transaction_log_rollback 
transaction_log.transaction_log_transaction transaction_log.truncate_log 
session_dictionary.long_proccesslist_info session_dictionary.user_variable 
myisam.basic myisam.mix2_myisam memory.basic memory.heap_var 
innobase.deadlock_innodb innobase.index_merge_innodb 
innobase.innodb-autoinc-44030 innobase.innodb-semi-consistent innobase.innodb 
innobase.innodb_bug53591 innobase.innodb_mysql innobase.unsafe_binlog_innodb 
filtered_replicator.filtered_replicator archive.aio_posix archive.engine
drizzle-test-run: *** ERROR: there were failing test cases
make[3]: *** [test-drizzle] Error 1
make[2]: *** [check-am] Error 2
make[1]: *** [check-recursive] Error 1
make: *** [check] Error 2


_______________________________________________
Mailing list: https://launchpad.net/~drizzle-builds
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~drizzle-builds
More help   : https://help.launchpad.net/ListHelp

Reply via email to