diff options
author | Davey Shafik <davey@php.net> | 2020-10-27 10:00:52 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-27 10:02:54 +0000 |
commit | e639fd80b4a2328d1b4f0429ee302ae915a99c71 (patch) | |
tree | a1c90037a7c9892b8855da077b3fcc31a394960f /lib/mysql.php | |
parent | 895ce98222435e17eda25e6ac6f68e0921ef30cc (diff) | |
download | php7-mysql-shim-e639fd80b4a2328d1b4f0429ee302ae915a99c71.zip php7-mysql-shim-e639fd80b4a2328d1b4f0429ee302ae915a99c71.tar.gz php7-mysql-shim-e639fd80b4a2328d1b4f0429ee302ae915a99c71.tar.bz2 |
s/char/string
Diffstat (limited to 'lib/mysql.php')
-rw-r--r-- | lib/mysql.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mysql.php b/lib/mysql.php index edeae96..7f6f008 100644 --- a/lib/mysql.php +++ b/lib/mysql.php @@ -500,7 +500,7 @@ namespace { $res->type = 'string'; break; case MYSQLI_TYPE_STRING: - $res->type = 'char'; + $res->type = 'string'; break; case MYSQLI_TYPE_GEOMETRY: $res->type = 'geometry'; |