Changeset 52010 for trunk/tests/phpunit/tests/dbdelta.php
- Timestamp:
- 11/04/2021 03:22:47 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/dbdelta.php
r51568 r52010 406 406 * @ticket 31869 407 407 */ 408 function test_truncated_index() {408 public function test_truncated_index() { 409 409 global $wpdb; 410 410 … … 446 446 * @ticket 36748 447 447 */ 448 function test_dont_downsize_text_fields() {448 public function test_dont_downsize_text_fields() { 449 449 global $wpdb; 450 450 … … 471 471 * @ticket 36748 472 472 */ 473 function test_dont_downsize_blob_fields() {473 public function test_dont_downsize_blob_fields() { 474 474 global $wpdb; 475 475 … … 496 496 * @ticket 36748 497 497 */ 498 function test_upsize_text_fields() {498 public function test_upsize_text_fields() { 499 499 global $wpdb; 500 500 … … 527 527 * @ticket 36748 528 528 */ 529 function test_upsize_blob_fields() {529 public function test_upsize_blob_fields() { 530 530 global $wpdb; 531 531 … … 558 558 * @ticket 20263 559 559 */ 560 function test_query_with_backticks_does_not_throw_an_undefined_index_warning() {560 public function test_query_with_backticks_does_not_throw_an_undefined_index_warning() { 561 561 global $wpdb; 562 562 … … 583 583 * @ticket 36948 584 584 */ 585 function test_spatial_indices() {585 public function test_spatial_indices() { 586 586 global $wpdb; 587 587 … … 644 644 * @ticket 20263 645 645 */ 646 function test_query_with_backticks_does_not_cause_a_query_to_alter_all_columns_and_indices_to_run_even_if_none_have_changed() {646 public function test_query_with_backticks_does_not_cause_a_query_to_alter_all_columns_and_indices_to_run_even_if_none_have_changed() { 647 647 global $wpdb; 648 648 … … 673 673 * @ticket 20263 674 674 */ 675 function test_index_with_a_reserved_keyword_can_be_created() {675 public function test_index_with_a_reserved_keyword_can_be_created() { 676 676 global $wpdb; 677 677 … … 709 709 * @ticket 20263 710 710 */ 711 function test_wp_get_db_schema_does_no_alter_queries_on_existing_install() {711 public function test_wp_get_db_schema_does_no_alter_queries_on_existing_install() { 712 712 $updates = dbDelta( wp_get_db_schema() ); 713 713 … … 718 718 * @ticket 20263 719 719 */ 720 function test_key_and_index_and_fulltext_key_and_fulltext_index_and_unique_key_and_unique_index_indicies() {720 public function test_key_and_index_and_fulltext_key_and_fulltext_index_and_unique_key_and_unique_index_indicies() { 721 721 global $wpdb; 722 722 … … 756 756 * @ticket 20263 757 757 */ 758 function test_index_and_key_are_synonyms_and_do_not_recreate_indices() {758 public function test_index_and_key_are_synonyms_and_do_not_recreate_indices() { 759 759 global $wpdb; 760 760 … … 780 780 * @ticket 20263 781 781 */ 782 function test_indices_with_prefix_limits_are_created_and_do_not_recreate_indices() {782 public function test_indices_with_prefix_limits_are_created_and_do_not_recreate_indices() { 783 783 global $wpdb; 784 784 … … 814 814 * @ticket 34959 815 815 */ 816 function test_index_col_names_with_order_do_not_recreate_indices() {816 public function test_index_col_names_with_order_do_not_recreate_indices() { 817 817 global $wpdb; 818 818 … … 838 838 * @ticket 34873 839 839 */ 840 function test_primary_key_with_single_space_does_not_recreate_index() {840 public function test_primary_key_with_single_space_does_not_recreate_index() { 841 841 global $wpdb; 842 842 … … 862 862 * @ticket 34869 863 863 */ 864 function test_index_definitions_with_spaces_do_not_recreate_indices() {864 public function test_index_definitions_with_spaces_do_not_recreate_indices() { 865 865 global $wpdb; 866 866 … … 886 886 * @ticket 34871 887 887 */ 888 function test_index_types_are_not_case_sensitive_and_do_not_recreate_indices() {888 public function test_index_types_are_not_case_sensitive_and_do_not_recreate_indices() { 889 889 global $wpdb; 890 890 … … 910 910 * @ticket 34874 911 911 */ 912 function test_key_names_are_not_case_sensitive_and_do_not_recreate_indices() {912 public function test_key_names_are_not_case_sensitive_and_do_not_recreate_indices() { 913 913 global $wpdb; 914 914 … … 935 935 * @ticket 34870 936 936 */ 937 function test_unchanged_key_lengths_do_not_recreate_index() {937 public function test_unchanged_key_lengths_do_not_recreate_index() { 938 938 global $wpdb; 939 939 … … 960 960 * @ticket 34870 961 961 */ 962 function test_changed_key_lengths_do_not_recreate_index() {962 public function test_changed_key_lengths_do_not_recreate_index() { 963 963 global $wpdb; 964 964 … … 1044 1044 * @ticket 31679 1045 1045 */ 1046 function test_column_type_change_with_hyphens_in_name() {1046 public function test_column_type_change_with_hyphens_in_name() { 1047 1047 global $wpdb; 1048 1048
Note: See TracChangeset
for help on using the changeset viewer.