mariadb/mysql-test/r
unknown 6d4b3c5800 Apply InnoDB snapshot innodb-5.1-ss1726.
Bug #16979: AUTO_INC lock in InnoDB works a table level lock
  - this is a major change in InnoDB auto-inc handling.
Bug #27950: Duplicate entry error in auto-inc after mysqld restart
  - Init AUTOINC from delete_row().
Bug #28781: InnoDB increments auto-increment value incorrectly with ON DUPLICATE KEY UPDATE
  - Use value specified by MySQL, in update_row().


mysql-test/r/innodb.result:
  Apply InnoDB snapshot innodb-5.1-ss1726.
  
  Revision r1655:
  Fix the innodb.test failure mentioned in r1654.
storage/innobase/dict/dict0dict.c:
  Apply InnoDB snapshot innodb-5.1-ss1726.
  
  Revision r1645:
  Fix for bug# 16979, this is a major change in InnoDB auto-inc handling. There
  is one test that fails as of this commit. The updated test case should be
  part of the snapshot from MySQL shortly.
  
  Fix for bug# 27950 - Init AUTOINC from delete_row().
  
  Fix for bug# 28781 - Use value specified by MySQL, in update_row().
  
  Summary of structural changes:
  ==============================
  InnoDB needs to hold a table level lock for AUTOINC allocations to overcome
  the non-determinism inherent in MySQL SBR for INSERT ... SELECT. In this fix 
  for simple INSERT statements (including multi-value inserts), we try and avoid
  acquiring the special AUTOINC table level lock unless another transaction has
  already reserved the AUTOINC table level lock, in which case we fall back
  to the old behavior of acquiring the AUTOINC table level lock.
  
  The max AUTOINC value is now read directly using the low level interface
  of InnoDB.
  
  
  Revision r1719:
  Merge r1264 from branches/zip: Avoid memory fragmentation when
  adding column definitions to tables.
  
  dict_mem_table_add_col(): Add the parameter "heap" for temporary memory
  allocation.  Allow it and "name" to be NULL.  These parameters are NULL
  when creating dummy indexes.
  
  dict_add_col_name(): Remove calls to ut_malloc() and ut_free().
  
  dict_table_get_col_name(): Allow table->col_names to be NULL.
  
  dict_table_add_system_columns(), dict_table_add_to_cache():
  Add the parameter "heap".
  ---
  Additional changes that had to be merged from branches/zip:
  
  dict_table_add_system_columns(): New function, factored out from
  dict_table_add_to_cache().
  
  mlog_parse_index(): Add some consistency checks, and make use of
  dict_table_add_system_columns().
storage/innobase/dict/dict0mem.c:
  Apply InnoDB snapshot innodb-5.1-ss1726.
  
  Revision r1645:
  Fix for bug# 16979, this is a major change in InnoDB auto-inc handling. There
  is one test that fails as of this commit. The updated test case should be
  part of the snapshot from MySQL shortly.
  
  Fix for bug# 27950 - Init AUTOINC from delete_row().
  
  Fix for bug# 28781 - Use value specified by MySQL, in update_row().
  
  Summary of structural changes:
  ==============================
  InnoDB needs to hold a table level lock for AUTOINC allocations to overcome
  the non-determinism inherent in MySQL SBR for INSERT ... SELECT. In this fix 
  for simple INSERT statements (including multi-value inserts), we try and avoid
  acquiring the special AUTOINC table level lock unless another transaction has
  already reserved the AUTOINC table level lock, in which case we fall back
  to the old behavior of acquiring the AUTOINC table level lock.
  
  The max AUTOINC value is now read directly using the low level interface
  of InnoDB.
  
  
  Revision r1719:
  Merge r1264 from branches/zip: Avoid memory fragmentation when
  adding column definitions to tables.
  
  dict_mem_table_add_col(): Add the parameter "heap" for temporary memory
  allocation.  Allow it and "name" to be NULL.  These parameters are NULL
  when creating dummy indexes.
  
  dict_add_col_name(): Remove calls to ut_malloc() and ut_free().
  
  dict_table_get_col_name(): Allow table->col_names to be NULL.
  
  dict_table_add_system_columns(), dict_table_add_to_cache():
  Add the parameter "heap".
  ---
  Additional changes that had to be merged from branches/zip:
  
  dict_table_add_system_columns(): New function, factored out from
  dict_table_add_to_cache().
  
  mlog_parse_index(): Add some consistency checks, and make use of
  dict_table_add_system_columns().
storage/innobase/handler/ha_innodb.cc:
  Apply InnoDB snapshot innodb-5.1-ss1726.
  
  Revision r1645:
  Fix for bug# 16979, this is a major change in InnoDB auto-inc handling. There
  is one test that fails as of this commit. The updated test case should be
  part of the snapshot from MySQL shortly.
  
  Fix for bug# 27950 - Init AUTOINC from delete_row().
  
  Fix for bug# 28781 - Use value specified by MySQL, in update_row().
  
  Summary of structural changes:
  ==============================
  InnoDB needs to hold a table level lock for AUTOINC allocations to overcome
  the non-determinism inherent in MySQL SBR for INSERT ... SELECT. In this fix 
  for simple INSERT statements (including multi-value inserts), we try and avoid
  acquiring the special AUTOINC table level lock unless another transaction has
  already reserved the AUTOINC table level lock, in which case we fall back
  to the old behavior of acquiring the AUTOINC table level lock.
  
  The max AUTOINC value is now read directly using the low level interface
  of InnoDB.
  
  
  Revision r1718:
  Replace mysql_byte with uchar and remove the #define mysql_byte from
  ha_innodb.cc.  This cleanup was made possible as of r1550:
  
  
  Revision r1658:
  check_trx_exists(): Remove a redundant function call and assignment that
  was added by someone at MySQL.
  
  
  Revision r1656:
  
  
  Revision r1719:
  Merge r1264 from branches/zip: Avoid memory fragmentation when
  adding column definitions to tables.
  
  dict_mem_table_add_col(): Add the parameter "heap" for temporary memory
  allocation.  Allow it and "name" to be NULL.  These parameters are NULL
  when creating dummy indexes.
  
  dict_add_col_name(): Remove calls to ut_malloc() and ut_free().
  
  dict_table_get_col_name(): Allow table->col_names to be NULL.
  
  dict_table_add_system_columns(), dict_table_add_to_cache():
  Add the parameter "heap".
  ---
  Additional changes that had to be merged from branches/zip:
  
  dict_table_add_system_columns(): New function, factored out from
  dict_table_add_to_cache().
  
  mlog_parse_index(): Add some consistency checks, and make use of
  dict_table_add_system_columns().
  
  
  Revision r1654:
  
  One test case in innodb.test fails because of auto-increment
  changes in r1562:1653:
  
  $diff innodb.result innodb.reject
  504c504
  < 3	test2		this will work
  ---
  > 4	test2		this will work
storage/innobase/handler/ha_innodb.h:
  Apply InnoDB snapshot innodb-5.1-ss1726.
  
  Revision r1645:
  Fix for bug# 16979, this is a major change in InnoDB auto-inc handling. There
  is one test that fails as of this commit. The updated test case should be
  part of the snapshot from MySQL shortly.
  
  Fix for bug# 27950 - Init AUTOINC from delete_row().
  
  Fix for bug# 28781 - Use value specified by MySQL, in update_row().
  
  Summary of structural changes:
  ==============================
  InnoDB needs to hold a table level lock for AUTOINC allocations to overcome
  the non-determinism inherent in MySQL SBR for INSERT ... SELECT. In this fix 
  for simple INSERT statements (including multi-value inserts), we try and avoid
  acquiring the special AUTOINC table level lock unless another transaction has
  already reserved the AUTOINC table level lock, in which case we fall back
  to the old behavior of acquiring the AUTOINC table level lock.
  
  The max AUTOINC value is now read directly using the low level interface
  of InnoDB.
  
  
  Revision r1654:
  
  One test case in innodb.test fails because of auto-increment
  changes in r1562:1653:
  
  $diff innodb.result innodb.reject
  504c504
  < 3	test2		this will work
  ---
  > 4	test2		this will work
storage/innobase/ibuf/ibuf0ibuf.c:
  Apply InnoDB snapshot innodb-5.1-ss1726.
  
  Revision r1715:
  ibuf0ibuf.c: Remove the unused prototype for dict_index_print_low()
  that was inadvertently added in r832.
  
  
  Revision r1719:
  Merge r1264 from branches/zip: Avoid memory fragmentation when
  adding column definitions to tables.
  
  dict_mem_table_add_col(): Add the parameter "heap" for temporary memory
  allocation.  Allow it and "name" to be NULL.  These parameters are NULL
  when creating dummy indexes.
  
  dict_add_col_name(): Remove calls to ut_malloc() and ut_free().
  
  dict_table_get_col_name(): Allow table->col_names to be NULL.
  
  dict_table_add_system_columns(), dict_table_add_to_cache():
  Add the parameter "heap".
  ---
  Additional changes that had to be merged from branches/zip:
  
  dict_table_add_system_columns(): New function, factored out from
  dict_table_add_to_cache().
  
  mlog_parse_index(): Add some consistency checks, and make use of
  dict_table_add_system_columns().
storage/innobase/include/dict0dict.h:
  Apply InnoDB snapshot innodb-5.1-ss1726.
  
  Revision r1645:
  Fix for bug# 16979, this is a major change in InnoDB auto-inc handling. There
  is one test that fails as of this commit. The updated test case should be
  part of the snapshot from MySQL shortly.
  
  Fix for bug# 27950 - Init AUTOINC from delete_row().
  
  Fix for bug# 28781 - Use value specified by MySQL, in update_row().
  
  Summary of structural changes:
  ==============================
  InnoDB needs to hold a table level lock for AUTOINC allocations to overcome
  the non-determinism inherent in MySQL SBR for INSERT ... SELECT. In this fix 
  for simple INSERT statements (including multi-value inserts), we try and avoid
  acquiring the special AUTOINC table level lock unless another transaction has
  already reserved the AUTOINC table level lock, in which case we fall back
  to the old behavior of acquiring the AUTOINC table level lock.
  
  The max AUTOINC value is now read directly using the low level interface
  of InnoDB.
  
  
  Revision r1719:
  Merge r1264 from branches/zip: Avoid memory fragmentation when
  adding column definitions to tables.
  
  dict_mem_table_add_col(): Add the parameter "heap" for temporary memory
  allocation.  Allow it and "name" to be NULL.  These parameters are NULL
  when creating dummy indexes.
  
  dict_add_col_name(): Remove calls to ut_malloc() and ut_free().
  
  dict_table_get_col_name(): Allow table->col_names to be NULL.
  
  dict_table_add_system_columns(), dict_table_add_to_cache():
  Add the parameter "heap".
  ---
  Additional changes that had to be merged from branches/zip:
  
  dict_table_add_system_columns(): New function, factored out from
  dict_table_add_to_cache().
  
  mlog_parse_index(): Add some consistency checks, and make use of
  dict_table_add_system_columns().
storage/innobase/include/dict0mem.h:
  Apply InnoDB snapshot innodb-5.1-ss1726.
  
  Revision r1645:
  Fix for bug# 16979, this is a major change in InnoDB auto-inc handling. There
  is one test that fails as of this commit. The updated test case should be
  part of the snapshot from MySQL shortly.
  
  Fix for bug# 27950 - Init AUTOINC from delete_row().
  
  Fix for bug# 28781 - Use value specified by MySQL, in update_row().
  
  Summary of structural changes:
  ==============================
  InnoDB needs to hold a table level lock for AUTOINC allocations to overcome
  the non-determinism inherent in MySQL SBR for INSERT ... SELECT. In this fix 
  for simple INSERT statements (including multi-value inserts), we try and avoid
  acquiring the special AUTOINC table level lock unless another transaction has
  already reserved the AUTOINC table level lock, in which case we fall back
  to the old behavior of acquiring the AUTOINC table level lock.
  
  The max AUTOINC value is now read directly using the low level interface
  of InnoDB.
  
  
  Revision r1719:
  Merge r1264 from branches/zip: Avoid memory fragmentation when
  adding column definitions to tables.
  
  dict_mem_table_add_col(): Add the parameter "heap" for temporary memory
  allocation.  Allow it and "name" to be NULL.  These parameters are NULL
  when creating dummy indexes.
  
  dict_add_col_name(): Remove calls to ut_malloc() and ut_free().
  
  dict_table_get_col_name(): Allow table->col_names to be NULL.
  
  dict_table_add_system_columns(), dict_table_add_to_cache():
  Add the parameter "heap".
  ---
  Additional changes that had to be merged from branches/zip:
  
  dict_table_add_system_columns(): New function, factored out from
  dict_table_add_to_cache().
  
  mlog_parse_index(): Add some consistency checks, and make use of
  dict_table_add_system_columns().
storage/innobase/include/lock0lock.h:
  Apply InnoDB snapshot innodb-5.1-ss1726.
  
  Revision r1664:
  lock_number_of_rows_locked(): Fix a typo in comment, and make the comments
  in lock0lock.c and lock0lock.h identical.  The typo was incorrectly fixed in
  r1623.
storage/innobase/include/row0mysql.h:
  Apply InnoDB snapshot innodb-5.1-ss1726.
  
  Revision r1645:
  Fix for bug# 16979, this is a major change in InnoDB auto-inc handling. There
  is one test that fails as of this commit. The updated test case should be
  part of the snapshot from MySQL shortly.
  
  Fix for bug# 27950 - Init AUTOINC from delete_row().
  
  Fix for bug# 28781 - Use value specified by MySQL, in update_row().
  
  Summary of structural changes:
  ==============================
  InnoDB needs to hold a table level lock for AUTOINC allocations to overcome
  the non-determinism inherent in MySQL SBR for INSERT ... SELECT. In this fix 
  for simple INSERT statements (including multi-value inserts), we try and avoid
  acquiring the special AUTOINC table level lock unless another transaction has
  already reserved the AUTOINC table level lock, in which case we fall back
  to the old behavior of acquiring the AUTOINC table level lock.
  
  The max AUTOINC value is now read directly using the low level interface
  of InnoDB.
storage/innobase/include/row0sel.h:
  Apply InnoDB snapshot innodb-5.1-ss1726.
  
  Revision r1645:
  Fix for bug# 16979, this is a major change in InnoDB auto-inc handling. There
  is one test that fails as of this commit. The updated test case should be
  part of the snapshot from MySQL shortly.
  
  Fix for bug# 27950 - Init AUTOINC from delete_row().
  
  Fix for bug# 28781 - Use value specified by MySQL, in update_row().
  
  Summary of structural changes:
  ==============================
  InnoDB needs to hold a table level lock for AUTOINC allocations to overcome
  the non-determinism inherent in MySQL SBR for INSERT ... SELECT. In this fix 
  for simple INSERT statements (including multi-value inserts), we try and avoid
  acquiring the special AUTOINC table level lock unless another transaction has
  already reserved the AUTOINC table level lock, in which case we fall back
  to the old behavior of acquiring the AUTOINC table level lock.
  
  The max AUTOINC value is now read directly using the low level interface
  of InnoDB.
storage/innobase/include/trx0trx.h:
  Apply InnoDB snapshot innodb-5.1-ss1726.
  
  Revision r1645:
  Fix for bug# 16979, this is a major change in InnoDB auto-inc handling. There
  is one test that fails as of this commit. The updated test case should be
  part of the snapshot from MySQL shortly.
  
  Fix for bug# 27950 - Init AUTOINC from delete_row().
  
  Fix for bug# 28781 - Use value specified by MySQL, in update_row().
  
  Summary of structural changes:
  ==============================
  InnoDB needs to hold a table level lock for AUTOINC allocations to overcome
  the non-determinism inherent in MySQL SBR for INSERT ... SELECT. In this fix 
  for simple INSERT statements (including multi-value inserts), we try and avoid
  acquiring the special AUTOINC table level lock unless another transaction has
  already reserved the AUTOINC table level lock, in which case we fall back
  to the old behavior of acquiring the AUTOINC table level lock.
  
  The max AUTOINC value is now read directly using the low level interface
  of InnoDB.
storage/innobase/include/ut0mem.h:
  Apply InnoDB snapshot innodb-5.1-ss1726.
  
  Revision r1713:
  Fix typo in comment.
storage/innobase/log/log0recv.c:
  Apply InnoDB snapshot innodb-5.1-ss1726.
  
  Revision r1657:
  recv_init_crash_recovery(): remove trailing white space
storage/innobase/row/row0mysql.c:
  Apply InnoDB snapshot innodb-5.1-ss1726.
  
  Revision r1645:
  Fix for bug# 16979, this is a major change in InnoDB auto-inc handling. There
  is one test that fails as of this commit. The updated test case should be
  part of the snapshot from MySQL shortly.
  
  Fix for bug# 27950 - Init AUTOINC from delete_row().
  
  Fix for bug# 28781 - Use value specified by MySQL, in update_row().
  
  Summary of structural changes:
  ==============================
  InnoDB needs to hold a table level lock for AUTOINC allocations to overcome
  the non-determinism inherent in MySQL SBR for INSERT ... SELECT. In this fix 
  for simple INSERT statements (including multi-value inserts), we try and avoid
  acquiring the special AUTOINC table level lock unless another transaction has
  already reserved the AUTOINC table level lock, in which case we fall back
  to the old behavior of acquiring the AUTOINC table level lock.
  
  The max AUTOINC value is now read directly using the low level interface
  of InnoDB.
storage/innobase/row/row0sel.c:
  Apply InnoDB snapshot innodb-5.1-ss1726.
  
  Revision r1645:
  Fix for bug# 16979, this is a major change in InnoDB auto-inc handling. There
  is one test that fails as of this commit. The updated test case should be
  part of the snapshot from MySQL shortly.
  
  Fix for bug# 27950 - Init AUTOINC from delete_row().
  
  Fix for bug# 28781 - Use value specified by MySQL, in update_row().
  
  Summary of structural changes:
  ==============================
  InnoDB needs to hold a table level lock for AUTOINC allocations to overcome
  the non-determinism inherent in MySQL SBR for INSERT ... SELECT. In this fix 
  for simple INSERT statements (including multi-value inserts), we try and avoid
  acquiring the special AUTOINC table level lock unless another transaction has
  already reserved the AUTOINC table level lock, in which case we fall back
  to the old behavior of acquiring the AUTOINC table level lock.
  
  The max AUTOINC value is now read directly using the low level interface
  of InnoDB.
storage/innobase/trx/trx0trx.c:
  Apply InnoDB snapshot innodb-5.1-ss1726.
  
  Revision r1645:
  Fix for bug# 16979, this is a major change in InnoDB auto-inc handling. There
  is one test that fails as of this commit. The updated test case should be
  part of the snapshot from MySQL shortly.
  
  Fix for bug# 27950 - Init AUTOINC from delete_row().
  
  Fix for bug# 28781 - Use value specified by MySQL, in update_row().
  
  Summary of structural changes:
  ==============================
  InnoDB needs to hold a table level lock for AUTOINC allocations to overcome
  the non-determinism inherent in MySQL SBR for INSERT ... SELECT. In this fix 
  for simple INSERT statements (including multi-value inserts), we try and avoid
  acquiring the special AUTOINC table level lock unless another transaction has
  already reserved the AUTOINC table level lock, in which case we fall back
  to the old behavior of acquiring the AUTOINC table level lock.
  
  The max AUTOINC value is now read directly using the low level interface
  of InnoDB.
2007-08-24 19:14:52 -06:00
..
1st.result
alias.result
alter_table-big.result Patch changing how ALTER TABLE implementation handles table locking 2007-05-19 10:49:56 +04:00
alter_table.result Merge mysql.com:/home/svoj/devel/mysql/BUG29957/mysql-5.0-engines 2007-07-27 14:44:31 +05:00
analyse.result sp.result, analyse.result: 2007-05-30 20:25:16 +04:00
analyze.result
ansi.result
archive-big.result BUG#15787 - MySQL crashes when archive table exceeds 2GB 2007-06-24 19:44:54 +05:00
archive.result BUG#29207 - archive table reported as corrupt by check table 2007-06-28 14:04:20 +05:00
archive_bitfield.result
archive_gis.result Bug #27531: 5.1 part of the fix 2007-05-29 15:58:18 +03:00
auto_increment.result backport of Bug#11491 Misleading error message if not NULL column set to NULL, SQL mode TRADITIONAL 2007-05-30 17:04:04 +05:00
backup.result Bug #29245: Bad Merge Caused Error Codes Conflict between 5.0/5.1 2007-06-26 13:15:43 +02:00
bench_count_distinct.result
big_test.require
bigint.result Merge gleb.loc:/home/uchum/work/bk/5.0-opt 2007-06-16 22:40:25 +05:00
binary.result Merge olga.mysql.com:/home/igor/mysql-5.0-opt 2007-06-30 20:49:28 -07:00
binlog_tx_isolation.result BUG#23051 (READ COMMITTED breaks mixed and statement-based replication): 2007-06-14 13:33:31 +02:00
binlog_unsafe.result Fixes to tests and test results. 2007-06-19 11:09:22 +02:00
bool.result
bootstrap.result
bulk_replace.result
cache_innodb.result
case.result
case_sensitive_file_system.require
cast.result Merge gleb.loc:/home/uchum/work/bk/5.0-opt 2007-07-21 02:25:39 +05:00
check.result Merge mysql.com:/home/svoj/devel/mysql/BUG26325/mysql-5.0-engines 2007-07-19 15:54:31 +05:00
check_var_limit.require
client_xml.result
comments.result Bug#25411 (trigger code truncated), PART II 2007-06-12 15:23:58 -06:00
compare.result
compress.result Bug #27531: 5.1 part of the fix 2007-05-29 15:58:18 +03:00
concurrent_innodb.result
connect.result
consistent_snapshot.result
constraints.result
contributors.result
count_distinct.result
count_distinct2.result
count_distinct3.result
crash_commit_before.result
create-big.result 5.1 version of fix for: 2007-05-23 15:26:16 +04:00
create.result Merge gleb.loc:/home/uchum/work/bk/5.1 2007-07-26 05:13:32 +05:00
create_not_windows.result Bug 29325: moved the test from create_not_windows to symlink. 2007-07-13 13:56:22 +03:00
create_select_tmp.result
csv.result Fix for bug #29652: csv.test failure: two changes conflict after merge 2007-07-10 13:09:07 +05:00
ctype_big5.result Bug#29484 ctype_big5 fails on 'double whopper' in mysql-5.1-new-rpl 2007-07-04 14:21:29 +05:00
ctype_collate.result Merge magare.gmz:/home/kgeorge/mysql/autopush/B29325-5.0-opt 2007-07-11 12:44:49 +03:00
ctype_cp932_binlog_row.result
ctype_cp932_binlog_stm.result Fixed a lot of compiler warnings and errors detected by Forte C++ on Solaris 2007-08-13 16:11:25 +03:00
ctype_cp1250_ch.result
ctype_cp1251.result
ctype_create.result
ctype_eucjpms.result
ctype_euckr.result
ctype_filename.result
ctype_gb2312.result
ctype_gbk.result
ctype_hebrew.result
ctype_latin1.result Merge mysql.com:/home/bar/mysql-work/mysql-5.0.b29499 2007-07-04 16:34:47 +05:00
ctype_latin1_de.result
ctype_latin2.result
ctype_latin2_ch.result
ctype_ldml.result Bug#28916 LDML doesn't work for utf8 2007-06-07 17:55:55 +05:00
ctype_many.result
ctype_mb.result
ctype_recoding.result
ctype_sjis.result
ctype_tis620.result
ctype_uca.result Bug#27345 Incorrect data returned when range-read from utf8_danish_ci indexes 2007-06-28 13:34:44 +05:00
ctype_ucs.result Merge mysql.com:/home/bar/mysql-work/mysql-5.0.b28875 2007-08-03 17:16:02 +05:00
ctype_ucs2_def.result Merge mysql.com:/home/bar/mysql-work/mysql-5.0.b28925 2007-06-22 17:40:02 +05:00
ctype_ujis.result
ctype_ujis_ucs2.result Bug#28600 Yen sign and overline ujis conversion change 2007-05-30 12:30:15 +05:00
ctype_utf8.result Merge mysql.com:/home/bar/mysql-work/mysql-5.0.b28875 2007-08-03 17:16:02 +05:00
date_formats.result Bug#28369 rpl test cases fail with binlog disabled 2007-06-07 19:20:49 +02:00
ddl_i18n_koi8r.result Fix merge: update result files. 2007-07-30 14:03:47 +04:00
ddl_i18n_utf8.result Fix merge: update result files. 2007-07-30 14:03:47 +04:00
deadlock_innodb.result
default.result
delayed.result
delete.result
derived.result Bug #27531: 5.1 part of the fix 2007-05-29 15:58:18 +03:00
dirty_close.result
distinct.result Bug #27531: 5.1 part of the fix 2007-05-29 15:58:18 +03:00
drop.result
empty_table.result
endspace.result
error_simulation.result error_simulation.result, item.cc, subselect.result, error_simulation.test: 2007-06-11 17:02:16 +04:00
errors.result Bug#28677: SELECT on missing column gives extra error 2007-06-18 16:35:01 +03:00
events.result Patch for the following bugs: 2007-06-28 21:34:54 +04:00
events_bugs.result Bug#28641 CREATE EVENT with '2038.01.18 03:00:00' let server crash. 2007-07-25 09:43:49 +02:00
events_grant.result Patch for the following bugs: 2007-06-28 21:34:54 +04:00
events_logs_tests.result A fix for Bug#30212 events_logs_tests not deterministic; SLEEP(2), others 2007-08-11 01:11:56 +04:00
events_microsec.result
events_restart_phase1.result
events_restart_phase2.result
events_restart_phase3.result Fix for bug #28310 Server reports events which never were created 2007-05-29 12:44:44 +02:00
events_scheduling.result
events_stress.result
events_time_zone.result
events_trans.result Bug #29245: Bad Merge Caused Error Codes Conflict between 5.0/5.1 2007-06-26 13:15:43 +02:00
events_trans_notembedded.result
exampledb.result
execution_constants.result
explain.result
federated.result Merge bk-internal.mysql.com:/home/bk/mysql-5.1 2007-08-08 11:36:55 +04:00
federated_archive.result
federated_bug_13118.result
federated_bug_25714.result Bug#25714 2007-07-23 23:35:43 -07:00
federated_innodb.result Bug#25513 2007-06-28 16:03:01 -07:00
federated_server.result
federated_transactions.result
fix_priv_tables.result
flush.result Fix for bug #26380: LOCK TABLES + FLUSH LOGS causes deadlock 2007-06-17 09:56:33 +05:00
flush2.result
flush_block_commit.result
flush_block_commit_notembedded.result
flush_read_lock_kill.result
flush_table.result
foreign_key.result
fulltext.result BUG#29464 - load data infile into table with big5 chinese fulltext index 2007-07-13 03:29:25 +05:00
fulltext2.result fix test for bug29299 2007-07-06 11:35:10 -07:00
fulltext3.result BUG#29464 - load data infile into table with big5 chinese fulltext index 2007-07-13 03:29:25 +05:00
fulltext_cache.result
fulltext_distinct.result
fulltext_left_join.result
fulltext_multi.result
fulltext_order_by.result
fulltext_update.result
fulltext_var.result
func_compress.result
func_concat.result
func_crypt.result
func_date_add.result Bug#28450: The Item_date_add_interval in select list may fail the field 2007-05-30 00:33:12 +04:00
func_default.result
func_des_encrypt.result
func_encrypt.result
func_encrypt_nossl.result
func_equal.result
func_gconcat.result Merge gleb.loc:/home/uchum/work/bk/5.0-opt 2007-07-20 04:04:57 +05:00
func_group.result Bug #27531: 5.1 part of the fix 2007-05-29 15:58:18 +03:00
func_group_innodb.result Bug #27531: 5.1 part of the fix 2007-05-29 15:58:18 +03:00
func_if.result
func_in.result Patch for the following bugs: 2007-06-28 21:34:54 +04:00
func_isnull.result
func_like.result
func_math.result Merge polly.local:/home/kaa/src/maint/bug24912/my50-bug24912 2007-04-28 20:04:03 +04:00
func_misc.result Fixed errors found by pushbuild: 2007-08-16 16:47:31 +03:00
func_op.result
func_regexp.result
func_sapdb.result Backport of TIME->MYSQL_TIME / Y2K fixset 2007-05-16 10:44:59 +02:00
func_set.result
func_str.result Merge gleb.loc:/home/uchum/work/bk/5.0-opt 2007-06-18 17:08:56 +05:00
func_system.result
func_test.result
func_time.result Merge mysql.com:/home/bar/mysql-work/mysql-5.0.b28875 2007-08-03 17:16:02 +05:00
func_timestamp.result
gcc296.result
gis-rtree.result Merge magare.gmz:/home/kgeorge/mysql/autopush/B29325-5.0-opt 2007-07-11 12:44:49 +03:00
gis.result Merge gleb.loc:/home/uchum/work/bk/5.0-opt 2007-07-07 20:14:06 +05:00
grant.result Patch for the following bugs: 2007-06-28 21:34:54 +04:00
grant2.result grant2.result: 2007-06-11 22:55:21 +04:00
grant3.result
grant_cache_no_prot.result This changeset belongs to the fix of Bug#735 Prepared Statements: there is no support for Query Cache 2007-05-24 22:13:49 +02:00
grant_cache_ps_prot.result This changeset belongs to the fix of Bug#735 Prepared Statements: there is no support for Query Cache 2007-05-24 22:13:49 +02:00
greedy_optimizer.result Bug #27531: 5.1 part of the fix 2007-05-29 15:58:18 +03:00
group_by.result Merge mysql.com:/home/hf/work/29717/my50-29717 2007-07-31 11:12:23 +05:00
group_min_max.result Merge olga.mysql.com:/home/igor/mysql-5.0-opt 2007-06-24 19:06:09 -07:00
group_min_max_innodb.result
handler_innodb.result
handler_myisam.result
have_big5.require
have_binlog_format_mixed.require
have_binlog_format_row.require
have_binlog_format_statement.require
have_bug25714.require Bug#25714 2007-07-23 23:35:43 -07:00
have_compress.require
have_cp866.require Patch for the following bugs: 2007-06-28 21:34:54 +04:00
have_cp932.require
have_cp1250_ch.require
have_cp1251.require Patch for the following bugs: 2007-06-28 21:34:54 +04:00
have_crypt.require
have_debug.require
have_dynamic_loading.require
have_eucjpms.require
have_euckr.require
have_example_plugin.require
have_gb2312.require
have_gbk.require
have_geometry.require
have_koi8r.require Patch for the following bugs: 2007-06-28 21:34:54 +04:00
have_latin2_ch.require
have_log_bin.require Fix typo 2007-06-07 20:25:22 +02:00
have_met_timezone.require
have_moscow_leap_timezone.require
have_mysql_upgrade.result
have_ndb_extra.require
have_ndbapi_examples.require
have_outfile.require
have_partition.require
have_perror.require
have_query_cache.require
have_sjis.require
have_ssl.require
have_symlink.require
have_tis620.require
have_ucs2.require
have_udf_example.require
have_ujis.require
have_utf8.require Patch for the following bugs: 2007-06-28 21:34:54 +04:00
having.result Merge gleb.loc:/home/uchum/work/bk/5.0-opt 2007-07-26 01:23:39 +05:00
heap.result Adjusted results after the fix for bug #20710. 2007-04-29 05:06:14 +05:00
heap_auto_increment.result
heap_btree.result
heap_hash.result Corrected the error codes and messages for 5.1. This is to fix PB failures introduced by the patch for bug #27643. 2007-05-31 16:04:58 +04:00
help.result
im_cmd_line.result
im_daemon_life_cycle.result
im_instance_conf.result
im_life_cycle.result
im_options.result Bug#28012 Patch : IM crashes instead of reporting an error when mysqldpath is bad 2007-07-23 15:05:50 +02:00
im_utils.result
index_merge_innodb.result
index_merge_myisam.result 5.0-opt -> 5.1-opt merge 2007-07-18 18:08:05 +03:00
information_schema.result Bug#30310 wrong result on SELECT * FROM INFORMATION_SCHEMA.SCHEMATA WHERE .. 2007-08-09 20:41:26 +05:00
information_schema_chmod.result
information_schema_db.result WL#3732 Information schema optimization 2007-08-03 03:14:05 +05:00
information_schema_inno.result
information_schema_part.result Bug#28007 Wrong default value for I_S.PARTITIONS.PARTITION_COMMENT 2007-06-06 17:47:02 +05:00
init_connect.result
init_file.result
innodb-lock.result
innodb-replace.result
innodb-ucs2.result
innodb.result Apply InnoDB snapshot innodb-5.1-ss1726. 2007-08-24 19:14:52 -06:00
innodb_gis.result Bug #27531: 5.1 part of the fix 2007-05-29 15:58:18 +03:00
innodb_mysql.result Merge ramayana.hindu.god:/home/tsmith/m/bk/51 2007-08-01 18:15:24 -06:00
innodb_notembedded.result
innodb_timeout_rollback.result
innodb_trx_weight.result Apply the following innodb-5.1-* snapshots: ss1489, ss1496, ss1550, ss1569. 2007-07-10 05:37:43 -06:00
insert.result backport of Bug#11491 Misleading error message if not NULL column set to NULL, SQL mode TRADITIONAL 2007-05-30 17:04:04 +05:00
insert_notembedded.result
insert_select.result Merge mysql.com:/home/hf/work/29717/my50-29717 2007-07-31 11:12:23 +05:00
insert_update.result Merge bk-internal:/home/bk/mysql-5.0-opt 2007-06-12 16:34:54 +03:00
is_debug_build.require
isam.result
join.result Bug #27531: 5.1 part of the fix 2007-05-29 15:58:18 +03:00
join_crash.result
join_nested.result Merge gleb.loc:/home/uchum/work/bk/5.0-opt 2007-07-13 19:36:10 +05:00
join_outer.result Merge gleb.loc:/home/uchum/work/bk/mysql-5.0-opt 2007-05-28 00:22:44 +05:00
join_outer_innodb.result
key.result backport of Bug#11491 Misleading error message if not NULL column set to NULL, SQL mode TRADITIONAL 2007-05-30 17:04:04 +05:00
key_cache.result BUG#26976 - Missing table in merge not noted in related error msg + 2007-06-06 04:42:41 +05:00
key_diff.result Bug #27531: 5.1 part of the fix 2007-05-29 15:58:18 +03:00
key_primary.result
keywords.result
kill.result Merge damien-katzs-computer.local:/Users/dkatz/50_kill 2007-06-21 22:08:14 -04:00
limit.result Fix for bug #28464: a string argument to 'limit ?' PS - replication fails 2007-05-18 12:08:07 +05:00
loaddata.result Merge gleb.loc:/home/uchum/work/bk/5.0-opt 2007-07-07 20:14:06 +05:00
loaddata_autocom_innodb.result
lock.result Add a test case for Bug#5719 "impossible to lock VIEW". 2007-08-02 13:59:02 +04:00
lock_multi.result A fix for Bug#29049 lock_multi fails in rare case. 2007-08-11 14:07:49 +04:00
lock_tables_lost_commit.result
log_state.result A fix for Bug#28830 Test case log_state fails on VMWare Windows clone due to loaded system 2007-08-08 15:49:19 +04:00
log_tables-big.result
log_tables.result Fix an unstable test. 2007-08-01 16:48:14 +04:00
long_tmpdir.result Fix for bug #29015 "Stack overflow in processing temporary table name when tmpdir path is long" 2007-06-11 23:06:20 +04:00
lowercase0.require
lowercase1.require Bug #27653: Temp table can't be created if lower_case_table_names=1 and 2007-04-30 23:16:46 +02:00
lowercase2.require
lowercase_fs_off.result
lowercase_mixed_tmpdir.result Bug #27653: Temp table can't be created if lower_case_table_names=1 and 2007-04-30 23:16:46 +02:00
lowercase_table.result
lowercase_table2.result
lowercase_table3.result BUG#29839 - lowercase_table3.test: Cannot find table test/T1 from 2007-07-18 13:55:50 +05:00
lowercase_table_grant.result
lowercase_table_qcache.result
lowercase_view.result Patch for the following bugs: 2007-06-28 21:34:54 +04:00
merge.result Merge mysql.com:/home/svoj/devel/mysql/BUG26976/mysql-5.0-engines 2007-06-14 16:19:47 +05:00
metadata.result metadata.test, metadata.result: 2007-06-20 14:21:48 +05:00
mix2_myisam.result
mix2_myisam_ucs2.result
multi_statement.result
multi_update.result Merge maint1.mysql.com:/data/localhome/tsmith/bk/maint/50 2007-06-21 20:55:37 +02:00
myisam-blob.result
myisam-system.result
myisam.result Bug #27531: 5.1 part of the fix 2007-05-29 15:58:18 +03:00
mysql.result Bug#29903 The CMake build method does not produce the embedded library. 2007-08-03 21:08:48 -04:00
mysql_client_test.result
mysql_cp932.result
mysql_protocols.result
mysql_upgrade.result Bug#28401 mysql_upgrade Failed with STRICT_ALL_TABLES, ANSI_QUOTES and NO_ZERO_DATE 2007-05-19 18:22:55 +02:00
mysqladmin.result
mysqlbinlog-cp932.result
mysqlbinlog.result Merge mysql.com:/home/ram/work/b29928.new/b29928.new.5.0 2007-08-01 15:31:20 +05:00
mysqlbinlog2.result
mysqlbinlog_base64.result
mysqlcheck.result
mysqldump-max.result Merge ibm.:/home/alik/Documents/MySQL/devel/5.0-rt 2007-07-27 21:30:43 +04:00
mysqldump.result Merge bk-internal.mysql.com:/home/bk/mysql-5.1 2007-07-31 23:47:38 +04:00
mysqlshow.result
mysqlslap.result Added a test for pre-statement call, and fixed connection/deconnect code so that the rest of bbench can be ran by others. 2007-06-15 17:22:57 -07:00
mysqltest.result Minor fixes for test failures and compiler warnings for Bug #29579. 2007-07-13 00:45:54 -04:00
ndb_default_cluster.require
negation_elimination.result
no-threads.result
not_as_root.require
not_embedded.require
not_embedded_server.result
not_ndb.require
not_ndb_default.require
not_openssl.require
not_partition.require
not_partition.result
not_valgrind.require
not_windows.require
null.result backport of Bug#11491 Misleading error message if not NULL column set to NULL, SQL mode TRADITIONAL 2007-05-30 17:04:04 +05:00
null_key.result backport of Bug#11491 Misleading error message if not NULL column set to NULL, SQL mode TRADITIONAL 2007-05-30 17:04:04 +05:00
odbc.result
olap.result Merge moonbone.local:/mnt/gentoo64/work/bk-trees/mysql-5.0-opt 2007-05-30 19:35:35 +04:00
one_thread_per_connection.require
openssl_1.result Merge ibm.:/home/alik/Documents/MySQL/devel/5.0-rt 2007-07-27 21:30:43 +04:00
order_by.result
order_fill_sortbuf.result
outfile.result Bug#28181 Access denied to 'information_schema when select into out file (regression) 2007-05-04 14:41:58 +05:00
overflow.result
packet.result
parser.result
parser_bug21114_innodb.result
partition.result removed test case no longer supported 2007-07-02 20:11:54 +02:00
partition_02myisam.result
partition_bug18198.result Disabled ascii-function 2007-06-13 17:28:59 +02:00
partition_charset.result Disabled ascii-function 2007-06-13 17:28:59 +02:00
partition_error.result Disabled ascii-function 2007-06-13 17:28:59 +02:00
partition_federated.result
partition_grant.result
partition_hash.result
partition_innodb.result
partition_list.result BUG#18198 2007-04-20 18:35:16 +02:00
partition_mgm.result
partition_mgm_err.result
partition_mgm_err2.result
partition_not_windows.result Bug#25141 Crash Server on Partitioning command 2007-04-23 13:50:34 -04:00
partition_order.result
partition_pruning.result Disabled ascii-function 2007-06-13 17:28:59 +02:00
partition_range.result Disabled ascii-function 2007-06-13 17:28:59 +02:00
partition_windows.result Bug#25141 Crash Server on Partitioning command 2007-04-23 13:50:34 -04:00
perror.result
plugin.result BUG#25659 - memory leak via "plugins" test 2007-05-21 17:48:29 +05:00
preload.result BUG#26976 - Missing table in merge not noted in related error msg + 2007-06-06 04:42:41 +05:00
ps.result Post-merge fix. Update some test results, and add an InnoDB-only 2007-08-02 02:22:31 -06:00
ps_1general.result Merge bodhi.(none):/opt/local/work/mysql-5.0-runtime 2007-07-02 01:55:01 +04:00
ps_2myisam.result Merge bodhi.(none):/opt/local/work/mysql-5.0-runtime 2007-07-02 01:55:01 +04:00
ps_3innodb.result Merge bodhi.(none):/opt/local/work/mysql-5.0-runtime 2007-07-02 01:55:01 +04:00
ps_4heap.result Merge bodhi.(none):/opt/local/work/mysql-5.0-runtime 2007-07-02 01:55:01 +04:00
ps_5merge.result Merge bodhi.(none):/opt/local/work/mysql-5.0-runtime 2007-07-02 01:55:01 +04:00
ps_10nestset.result
ps_11bugs.result
ps_grant.result
ps_not_windows.result
query_cache.result Merge gleb.loc:/home/uchum/work/bk/5.0-opt 2007-07-29 14:41:39 +05:00
query_cache_merge.result
query_cache_notembedded.result
query_cache_ps_no_prot.result Fix for BUG#29318 "Statements prepared with PREPARE and with one 2007-06-23 19:16:51 +02:00
query_cache_ps_ps_prot.result Fix for BUG#29318 "Statements prepared with PREPARE and with one 2007-06-23 19:16:51 +02:00
raid.result
range.result Bug #27531: 5.1 part of the fix 2007-05-29 15:58:18 +03:00
read_many_rows_innodb.result Merge 50 -> 51 (-opt changesets) 2007-08-01 18:59:41 -06:00
read_only.result
read_only_innodb.result
rename.result
renamedb.result
repair.result Merge mysql.com:/home/svoj/devel/mysql/BUG26976/mysql-5.0-engines 2007-06-07 13:53:23 +05:00
replace.result
rollback.result
round.result
row.result Bug #27531: 5.1 part of the fix 2007-05-29 15:58:18 +03:00
rowid_order_innodb.result
schema.result
select.result Fixed bug #30396. 2007-08-24 02:23:49 +05:00
select_found.result
select_safe.result
server_id.require
server_id1.require
show_check.result After-merge fix: result adjusted. 2007-08-02 17:14:48 +05:00
skip_grants.result Patch for the following bugs: 2007-06-28 21:34:54 +04:00
skip_name_resolve.result
slave-running.result
slave-stopped.result
sp-big.result
sp-code.result Merge adventure.(none):/home/thek/Development/cpp/bug26977/my50-bug26977 2007-05-07 10:26:20 +02:00
sp-destruct.result Patch for the following bugs: 2007-06-28 21:34:54 +04:00
sp-dynamic.result Merge adventure.(none):/home/thek/Development/cpp/bug28846/my50-bug28846 2007-06-22 15:23:51 +02:00
sp-error.result Patch for the following bugs: 2007-06-28 21:34:54 +04:00
sp-prelocking.result Bug #29929 LOCK TABLES does not pre-lock tables used in triggers of the locked tables 2007-07-27 16:56:29 +02:00
sp-security.result Patch for the following bugs: 2007-06-28 21:34:54 +04:00
sp-threads.result
sp-ucs2.result
sp-vars.result Merge adventure.(none):/home/thek/Development/cpp/bug26277/my51-bug26277 2007-05-18 14:29:24 +02:00
sp.result sql_yacc.yy, sp.result, disabled.def: 2007-07-31 13:22:01 +05:00
sp_gis.result Bug #29245: Bad Merge Caused Error Codes Conflict between 5.0/5.1 2007-06-26 13:15:43 +02:00
sp_notembedded.result
sp_stress_case.result
sp_trans.result Bug #29245: Bad Merge Caused Error Codes Conflict between 5.0/5.1 2007-06-26 13:15:43 +02:00
sp_trans_log.result Bug#28369 rpl test cases fail with binlog disabled 2007-06-07 19:18:01 +02:00
sql_mode.result Patch for the following bugs: 2007-06-28 21:34:54 +04:00
ssl-big.result Bug #29579 Clients using SSL can hang the server 2007-07-12 22:06:33 -04:00
ssl.result Bug #27531: 5.1 part of the fix 2007-05-29 15:58:18 +03:00
ssl_8k_key.result Bug #29784 YaSSL assertion failure when reading 8k key. 2007-07-17 14:43:56 -04:00
ssl_compress.result Bug #27531: 5.1 part of the fix 2007-05-29 15:58:18 +03:00
ssl_connect.result
status.result Fixed errors found by pushbuild: 2007-08-16 16:47:31 +03:00
strict.result backport of Bug#11491 Misleading error message if not NULL column set to NULL, SQL mode TRADITIONAL 2007-05-30 17:04:04 +05:00
strict_autoinc_1myisam.result
strict_autoinc_2innodb.result
strict_autoinc_3heap.result
strict_autoinc_4bdb.result
subselect.result Post-merge fix. 2007-06-30 22:50:14 -07:00
subselect2.result
subselect3.result Bug #27531: 5.1 part of the fix 2007-05-29 15:58:18 +03:00
subselect_gis.result
subselect_innodb.result
subselect_notembedded.result after merge fix 2007-06-06 18:55:21 +05:00
sum_distinct-big.result
sum_distinct.result
symlink.result symlink.test, symlink.result: 2007-07-14 01:34:46 +05:00
synchronization.result
sysdate_is_now.result
system_mysql_db.result Patch for the following bugs: 2007-06-28 21:34:54 +04:00
system_mysql_db_refs.result
tablelock.result
temp_table.result Patch for the following bugs: 2007-06-28 21:34:54 +04:00
testdb_only.require
timezone.result
timezone2.result
timezone3.result
timezone4.result
timezone_grant.result
trigger-compat.result Patch for the following bugs: 2007-06-28 21:34:54 +04:00
trigger-grant.result Patch for the following bugs: 2007-06-28 21:34:54 +04:00
trigger-trans.result A fix and a test case for Bug#26141 mixing table types in trigger 2007-07-12 22:26:41 +04:00
trigger.result Merge bodhi.(none):/opt/local/work/mysql-5.0-runtime 2007-07-19 19:42:24 +04:00
true.require
truncate.result
type_binary.result
type_bit.result Fix for bug #28631: Bit index creation failure after alter 2007-05-29 16:24:12 +05:00
type_bit_innodb.result
type_blob.result
type_date.result Bug#26277 User variable returns one type in SELECT @v and other for CREATE as SELECT @v 2007-05-18 12:44:03 +02:00
type_datetime.result Merge moonbone.local:/mnt/gentoo64/work/test-5.0-opt-mysql 2007-06-11 00:16:00 +04:00
type_decimal.result Merge mysql.com:/d2/hf/mrg/mysql-5.0-opt 2007-06-14 16:35:20 +05:00
type_enum.result Merge gleb.loc:/home/uchum/work/bk/5.0-opt 2007-07-26 01:23:39 +05:00
type_float.result Changed the warning messages in the testcase to match 5.1 text. 2007-05-28 14:22:21 +04:00
type_nchar.result
type_newdecimal-big.result
type_newdecimal.result Post-merge fix. 2007-07-07 20:03:00 -07:00
type_ranges.result Merge gleb.loc:/home/uchum/work/bk/5.0-opt 2007-07-13 19:36:10 +05:00
type_set.result
type_time.result Merge magare.gmz:/home/kgeorge/mysql/work/mysql-5.0-opt 2007-07-18 15:56:29 +03:00
type_timestamp.result Bug #29245: Bad Merge Caused Error Codes Conflict between 5.0/5.1 2007-06-26 13:15:43 +02:00
type_uint.result
type_varchar.result
type_year.result
udf.result Merge damien-katzs-computer.local:/Users/dkatz/mysql50 2007-06-18 20:01:04 -04:00
union.result Bug #27531: 5.1 part of the fix 2007-05-29 15:58:18 +03:00
unsafe_binlog_innodb.result Bug #28757 Test program / embedded server crash in test "unsafe_binlog_innodb" 2007-06-12 17:53:16 +05:00
update.result Merge polly.local:/home/kaa/src/maint/bug22364/my50-bug22364 2007-04-27 12:42:15 +04:00
upgrade.result
user_limits.result
user_var-binlog.result
user_var.result Merge olga.mysql.com:/home/igor/mysql-5.1 2007-06-03 22:52:02 -07:00
varbinary.result Bug#25411 (trigger code truncated), PART II 2007-06-12 15:23:58 -06:00
variables-big.result
variables.result Simplify logging code a bit (to make code smaller and faster) 2007-08-03 01:14:27 +03:00
view.result Merge gleb.loc:/home/uchum/work/bk/5.0-opt 2007-07-29 14:41:39 +05:00
view_grant.result Patch for the following bugs: 2007-06-28 21:34:54 +04:00
view_query_cache.result
wait_timeout.result
warnings.result Bug #29245: Bad Merge Caused Error Codes Conflict between 5.0/5.1 2007-06-26 13:15:43 +02:00
warnings_engine_disabled.result
windows.require
windows.result Merge bk@192.168.21.1:mysql-5.1 2007-04-29 18:52:14 +05:00
windows_shm.result Bug#24924: shared-memory-base-name that is too long causes buffer overflow 2007-06-27 14:04:29 +02:00
xa.result
xml.result Bug #29245: Bad Merge Caused Error Codes Conflict between 5.0/5.1 2007-06-26 13:15:43 +02:00