diff options
Diffstat (limited to 'includes/db/DatabaseMysqli.php')
-rw-r--r-- | includes/db/DatabaseMysqli.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/includes/db/DatabaseMysqli.php b/includes/db/DatabaseMysqli.php index a03c9aaf..ad12e196 100644 --- a/includes/db/DatabaseMysqli.php +++ b/includes/db/DatabaseMysqli.php @@ -166,13 +166,6 @@ class DatabaseMysqli extends DatabaseMysqlBase { } /** - * @return string - */ - function getServerVersion() { - return $this->mConn->server_info; - } - - /** * @param mysqli $res * @return bool */ @@ -231,11 +224,18 @@ class DatabaseMysqli extends DatabaseMysqlBase { */ protected function mysqlFetchField( $res, $n ) { $field = $res->fetch_field_direct( $n ); + + // Add missing properties to result (using flags property) + // which will be part of function mysql-fetch-field for backward compatibility $field->not_null = $field->flags & MYSQLI_NOT_NULL_FLAG; $field->primary_key = $field->flags & MYSQLI_PRI_KEY_FLAG; $field->unique_key = $field->flags & MYSQLI_UNIQUE_KEY_FLAG; $field->multiple_key = $field->flags & MYSQLI_MULTIPLE_KEY_FLAG; $field->binary = $field->flags & MYSQLI_BINARY_FLAG; + $field->numeric = $field->flags & MYSQLI_NUM_FLAG; + $field->blob = $field->flags & MYSQLI_BLOB_FLAG; + $field->unsigned = $field->flags & MYSQLI_UNSIGNED_FLAG; + $field->zerofill = $field->flags & MYSQLI_ZEROFILL_FLAG; return $field; } |