Changeset 57239 for trunk/tests/phpunit/tests/db/charset.php
- Timestamp:
- 01/03/2024 09:57:32 PM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/db/charset.php
r55562 r57239 1023 1023 $data = array( 1024 1024 'utf8_bin' => array( 1025 // utf8_bin tables don't need extra sanitychecking.1025 // utf8_bin tables don't need extra confidence checking. 1026 1026 'create' => '( a VARCHAR(50) COLLATE utf8_bin )', 1027 1027 'expected' => true, … … 1038 1038 ), 1039 1039 'utf8_bin + big5_chinese_ci' => array( 1040 // utf8_bin tables don't need extra sanitychecking,1040 // utf8_bin tables don't need extra confidence checking, 1041 1041 // except for when they're not just utf8_bin. 1042 1042 'create' => '( a VARCHAR(50) COLLATE utf8_bin, b VARCHAR(50) COLLATE big5_chinese_ci )', … … 1044 1044 ), 1045 1045 'utf8_bin + int' => array( 1046 // utf8_bin tables don't need extra sanitychecking1046 // utf8_bin tables don't need extra confidence checking 1047 1047 // when the other columns aren't strings. 1048 1048 'create' => '( a VARCHAR(50) COLLATE utf8_bin, b INT )',
Note: See TracChangeset
for help on using the changeset viewer.