null+****@clear*****
null+****@clear*****
2012年 2月 28日 (火) 10:29:08 JST
Kouhei Sutou 2012-02-28 10:29:08 +0900 (Tue, 28 Feb 2012) New Revision: 9a9d1ca1be1c9655123c036b785598d956b2e163 Log: update files. Modified files: test/sql/suite/mroonga_storage/r/files.am test/sql/suite/mroonga_storage/t/files.am test/sql/suite/mroonga_wrapper/r/files.am test/sql/suite/mroonga_wrapper/t/files.am Modified: test/sql/suite/mroonga_storage/r/files.am (+39 -8) =================================================================== --- test/sql/suite/mroonga_storage/r/files.am 2012-02-28 09:53:48 +0900 (1b50dfe) +++ test/sql/suite/mroonga_storage/r/files.am 2012-02-28 10:29:08 +0900 (425389b) @@ -10,12 +10,23 @@ result_files = \ auto_increment_text.result \ binlog.result \ btree.result \ - column_date.result \ - column_datetime.result \ - column_decimal.result \ - column_timestamp.result \ - count_performance.result \ - count_star_index_view.result \ + column_date_with_index.result \ + column_date_without_index.result \ + column_datetime_with_fractional_seconds_with_index.result \ + column_datetime_with_fractional_seconds_without_index.result \ + column_datetime_without_fractional_seconds_with_index.result \ + column_datetime_without_fractional_seconds_without_index.result \ + column_decimal_with_fractional_seconds_with_index.result \ + column_decimal_with_fractional_seconds_without_index.result \ + column_decimal_without_fractional_seconds_with_index.result \ + column_decimal_without_fractional_seconds_without_index.result \ + column_time_with_fractional_seconds.result \ + column_time_without_fractional_seconds.result \ + column_timestamp_with_fractional_seconds.result \ + column_timestamp_without_fractional_seconds.result \ + column_year_with_index.result \ + column_year_without_index.result \ + create_database_name_slash.result \ create_table.result \ delete_fulltext_column.result \ delete_id_index_hash_no_unique.result \ @@ -40,7 +51,6 @@ result_files = \ fulltext_no_primary_key.result \ fulltext_no_such_key.result \ fulltext_not_match_against.result \ - fulltext_order_limit.result \ fulltext_parser_comment.result \ fulltext_parser_default.result \ fulltext_search_ascii.result \ @@ -54,6 +64,8 @@ result_files = \ hash_index_normal_column_insert.result \ information_schema.result.in \ insert.result \ + insert_on_duplicate_key_update_primary_key.result \ + insert_on_duplicate_key_update_unique_key.result \ key_read.result \ last_insert_grn_id.result \ log_level.result \ @@ -68,7 +80,24 @@ result_files = \ multiple_column_primary_key_delete.result \ multiple_column_primary_key_int.result \ multiple_column_primary_key_update.result \ - order_limit_performance.result \ + optimization_order_limit_disabled.result \ + optimization_order_limit_equal_int.result \ + optimization_order_limit_have_primary_key.result \ + optimization_order_limit_no_primary_key.result \ + optimization_order_limit_todo_split_me.result \ + optimization_skip_count_disabled.result \ + optimization_skip_count_index_view.result \ + optimization_skip_count_todo_split_me.result \ + primary_key_date.result \ + primary_key_datetime_with_fractional_seconds.result \ + primary_key_datetime_without_fractional_seconds.result \ + primary_key_decimal_with_fractional_seconds.result \ + primary_key_decimal_without_fractional_seconds.result \ + primary_key_time_with_fractional_seconds.result \ + primary_key_time_without_fractional_seconds.result \ + primary_key_timestamp_with_fractional_seconds.result \ + primary_key_timestamp_without_fractional_seconds.result \ + primary_key_year.result \ replace_select_varchar.result \ replace_text.result \ replace_varchar.result \ @@ -77,6 +106,8 @@ result_files = \ select_secondary_key.result \ show_create_table.result \ show_table_status.result \ + sub_query_fulltext.result \ + temporary_table.result \ tinyint.result \ truncate.result \ update_by_last_insert_grn_id.result \ Modified: test/sql/suite/mroonga_storage/t/files.am (+39 -8) =================================================================== --- test/sql/suite/mroonga_storage/t/files.am 2012-02-28 09:53:48 +0900 (ba50878) +++ test/sql/suite/mroonga_storage/t/files.am 2012-02-28 10:29:08 +0900 (714586f) @@ -10,12 +10,23 @@ test_files = \ auto_increment_text.test \ binlog.test \ btree.test \ - column_date.test \ - column_datetime.test \ - column_decimal.test \ - column_timestamp.test \ - count_performance.test \ - count_star_index_view.test \ + column_date_with_index.test \ + column_date_without_index.test \ + column_datetime_with_fractional_seconds_with_index.test \ + column_datetime_with_fractional_seconds_without_index.test \ + column_datetime_without_fractional_seconds_with_index.test \ + column_datetime_without_fractional_seconds_without_index.test \ + column_decimal_with_fractional_seconds_with_index.test \ + column_decimal_with_fractional_seconds_without_index.test \ + column_decimal_without_fractional_seconds_with_index.test \ + column_decimal_without_fractional_seconds_without_index.test \ + column_time_with_fractional_seconds.test \ + column_time_without_fractional_seconds.test \ + column_timestamp_with_fractional_seconds.test \ + column_timestamp_without_fractional_seconds.test \ + column_year_with_index.test \ + column_year_without_index.test \ + create_database_name_slash.test \ create_table.test \ delete_fulltext_column.test \ delete_id_index_hash_no_unique.test \ @@ -40,7 +51,6 @@ test_files = \ fulltext_no_primary_key.test \ fulltext_no_such_key.test \ fulltext_not_match_against.test \ - fulltext_order_limit.test \ fulltext_parser_comment.test \ fulltext_parser_default.test \ fulltext_search_ascii.test \ @@ -54,6 +64,8 @@ test_files = \ hash_index_normal_column_insert.test \ information_schema.test \ insert.test \ + insert_on_duplicate_key_update_primary_key.test \ + insert_on_duplicate_key_update_unique_key.test \ key_read.test \ last_insert_grn_id.test \ log_level.test \ @@ -68,7 +80,24 @@ test_files = \ multiple_column_primary_key_delete.test \ multiple_column_primary_key_int.test \ multiple_column_primary_key_update.test \ - order_limit_performance.test \ + optimization_order_limit_disabled.test \ + optimization_order_limit_equal_int.test \ + optimization_order_limit_have_primary_key.test \ + optimization_order_limit_no_primary_key.test \ + optimization_order_limit_todo_split_me.test \ + optimization_skip_count_disabled.test \ + optimization_skip_count_index_view.test \ + optimization_skip_count_todo_split_me.test \ + primary_key_date.test \ + primary_key_datetime_with_fractional_seconds.test \ + primary_key_datetime_without_fractional_seconds.test \ + primary_key_decimal_with_fractional_seconds.test \ + primary_key_decimal_without_fractional_seconds.test \ + primary_key_time_with_fractional_seconds.test \ + primary_key_time_without_fractional_seconds.test \ + primary_key_timestamp_with_fractional_seconds.test \ + primary_key_timestamp_without_fractional_seconds.test \ + primary_key_year.test \ replace_select_varchar.test \ replace_text.test \ replace_varchar.test \ @@ -77,6 +106,8 @@ test_files = \ select_secondary_key.test \ show_create_table.test \ show_table_status.test \ + sub_query_fulltext.test \ + temporary_table.test \ tinyint.test \ truncate.test \ update_by_last_insert_grn_id.test \ Modified: test/sql/suite/mroonga_wrapper/r/files.am (+2 -1) =================================================================== --- test/sql/suite/mroonga_wrapper/r/files.am 2012-02-28 09:53:48 +0900 (f934827) +++ test/sql/suite/mroonga_wrapper/r/files.am 2012-02-28 10:29:08 +0900 (b1971fe) @@ -35,8 +35,9 @@ result_files = \ geometry_delete.result \ geometry_update.result \ insert.result \ - order_limit_performance.result \ + optimization_order_limit_todo_split_me.result \ repair_table.result \ + temporary_table.result \ transaction_rollback_delete_delete.result \ transaction_rollback_delete_update.result \ truncate.result \ Modified: test/sql/suite/mroonga_wrapper/t/files.am (+2 -1) =================================================================== --- test/sql/suite/mroonga_wrapper/t/files.am 2012-02-28 09:53:48 +0900 (f544ca5) +++ test/sql/suite/mroonga_wrapper/t/files.am 2012-02-28 10:29:08 +0900 (59b7689) @@ -35,8 +35,9 @@ test_files = \ geometry_delete.test \ geometry_update.test \ insert.test \ - order_limit_performance.test \ + optimization_order_limit_todo_split_me.test \ repair_table.test \ + temporary_table.test \ transaction_rollback_delete_delete.test \ transaction_rollback_delete_update.test \ truncate.test \