summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDavey Shafik <davey@php.net>2020-10-27 09:53:26 +0000
committerGitHub <noreply@github.com>2020-10-27 09:53:26 +0000
commit895ce98222435e17eda25e6ac6f68e0921ef30cc (patch)
tree4a7d7140bb12e16f72205f3e655d379ac7f6f25d /lib
parentc981209530f122d4e3033eebe66f160c0638ee91 (diff)
downloadphp7-mysql-shim-895ce98222435e17eda25e6ac6f68e0921ef30cc.zip
php7-mysql-shim-895ce98222435e17eda25e6ac6f68e0921ef30cc.tar.gz
php7-mysql-shim-895ce98222435e17eda25e6ac6f68e0921ef30cc.tar.bz2
s/varchar/string
Diffstat (limited to 'lib')
-rw-r--r--lib/mysql.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mysql.php b/lib/mysql.php
index 95f6e2b..edeae96 100644
--- a/lib/mysql.php
+++ b/lib/mysql.php
@@ -497,7 +497,7 @@ namespace {
$res->type = 'blob';
break;
case MYSQLI_TYPE_VAR_STRING:
- $res->type = 'varchar';
+ $res->type = 'string';
break;
case MYSQLI_TYPE_STRING:
$res->type = 'char';