diff options
author | Davey Shafik <davey@php.net> | 2020-10-27 09:53:26 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-27 09:53:26 +0000 |
commit | 895ce98222435e17eda25e6ac6f68e0921ef30cc (patch) | |
tree | 4a7d7140bb12e16f72205f3e655d379ac7f6f25d /tests/MySqlShimTest.php | |
parent | c981209530f122d4e3033eebe66f160c0638ee91 (diff) | |
download | php7-mysql-shim-895ce98222435e17eda25e6ac6f68e0921ef30cc.zip php7-mysql-shim-895ce98222435e17eda25e6ac6f68e0921ef30cc.tar.gz php7-mysql-shim-895ce98222435e17eda25e6ac6f68e0921ef30cc.tar.bz2 |
s/varchar/string
Diffstat (limited to 'tests/MySqlShimTest.php')
-rw-r--r-- | tests/MySqlShimTest.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/MySqlShimTest.php b/tests/MySqlShimTest.php index 71c5c0a..a39ac1f 100644 --- a/tests/MySqlShimTest.php +++ b/tests/MySqlShimTest.php @@ -984,42 +984,42 @@ class MySqlShimTest extends \Yoast\PHPUnitPolyfills\TestCases\TestCase 1 => array( 'name' => 'one', 'max_length' => 3, 'not_null' => 0, 'primary_key' => 0, 'unique_key' => 0, 'multiple_key' => 1, 'numeric' => 0, 'blob' => 0, - 'type' => 'varchar', 'unsigned' => 0, 'zerofill' => 0 + 'type' => 'string', 'unsigned' => 0, 'zerofill' => 0 ), 2 => array( 'name' => 'two', 'max_length' => 1, 'not_null' => 0, 'primary_key' => 0, 'unique_key' => 1, 'multiple_key' => 0, 'numeric' => 0, 'blob' => 0, - 'type' => 'varchar', 'unsigned' => 0, 'zerofill' => 0 + 'type' => 'string', 'unsigned' => 0, 'zerofill' => 0 ), 3 => array( 'name' => 'three', 'max_length' => 1, 'not_null' => 0, 'primary_key' => 0, 'unique_key' => 0, 'multiple_key' => 1, 'numeric' => 0, 'blob' => 0, - 'type' => 'varchar', 'unsigned' => 0, 'zerofill' => 0 + 'type' => 'string', 'unsigned' => 0, 'zerofill' => 0 ), 4 => array( 'name' => 'four', 'max_length' => 1, 'not_null' => 0, 'primary_key' => 0, 'unique_key' => 0, 'multiple_key' => 1, 'numeric' => 0, 'blob' => 0, - 'type' => 'varchar', 'unsigned' => 0, 'zerofill' => 0 + 'type' => 'string', 'unsigned' => 0, 'zerofill' => 0 ), 5 => array( 'name' => 'five', 'max_length' => 1, 'not_null' => 0, 'primary_key' => 0, 'unique_key' => 0, 'multiple_key' => 0, 'numeric' => 0, 'blob' => 0, - 'type' => 'varchar', 'unsigned' => 0, 'zerofill' => 0 + 'type' => 'string', 'unsigned' => 0, 'zerofill' => 0 ), 6 => array( 'name' => 'six', 'max_length' => 1, 'not_null' => 0, 'primary_key' => 0, 'unique_key' => 0, 'multiple_key' => 0, 'numeric' => 0, 'blob' => 0, - 'type' => 'varchar', 'unsigned' => 0, 'zerofill' => 0 + 'type' => 'string', 'unsigned' => 0, 'zerofill' => 0 ), 7 => array( 'name' => 'seven', 'max_length' => 1, 'not_null' => 0, 'primary_key' => 0, 'unique_key' => 0, 'multiple_key' => 1, 'numeric' => 0, 'blob' => 0, - 'type' => 'varchar', 'unsigned' => 0, 'zerofill' => 0 + 'type' => 'string', 'unsigned' => 0, 'zerofill' => 0 ), 8 => array( 'name' => 'eight', 'max_length' => 1, 'not_null' => 0, 'primary_key' => 0, 'unique_key' => 0, 'multiple_key' => 0, 'numeric' => 0, 'blob' => 0, - 'type' => 'varchar', 'unsigned' => 0, 'zerofill' => 0 + 'type' => 'string', 'unsigned' => 0, 'zerofill' => 0 ), 9 => array( 'name' => 'nine', 'max_length' => 3, 'not_null' => 0, 'primary_key' => 0, |