diff --git a/tests/WP_SQLite_Translator_Tests.php b/tests/WP_SQLite_Translator_Tests.php index 1816f130..f0b7251e 100644 --- a/tests/WP_SQLite_Translator_Tests.php +++ b/tests/WP_SQLite_Translator_Tests.php @@ -2258,7 +2258,6 @@ public function testSelectVariable( $variable_name ) { public static function mysqlVariablesToTest() { return array( - // TODO: generate variable name permutations with mixed letter casing // NOTE: This list was derived from the variables used by the UpdraftPlus plugin. // We will start here and plan to expand supported variables over time. array( '@@character_set_client' ), @@ -2270,6 +2269,11 @@ public static function mysqlVariablesToTest() { array( '@@GLOBAL.sql_mode' ), array( '@@SESSION.max_allowed_packet' ), array( '@@SESSION.sql_mode' ), + + // Intentionally mix letter casing to help demonstrate case-insensitivity + array( '@@cHarActer_Set_cLient' ), + array( '@@gLoBAL.gTiD_purGed' ), + array( '@@sEssIOn.sqL_moDe' ), ); } }