Revert "Add support for mysqli extension"
[lhc/web/wiklou.git] / includes / db / DatabaseMysqlBase.php
index 49579b6..d33d7c7 100644 (file)
@@ -1006,7 +1006,7 @@ abstract class DatabaseMysqlBase extends DatabaseBase {
  */
 class MySQLField implements Field {
        private $name, $tablename, $default, $max_length, $nullable,
-               $is_pk, $is_unique, $is_multiple, $is_key, $type, $binary;
+               $is_pk, $is_unique, $is_multiple, $is_key, $type;
 
        function __construct( $info ) {
                $this->name = $info->name;
@@ -1019,7 +1019,6 @@ class MySQLField implements Field {
                $this->is_multiple = $info->multiple_key;
                $this->is_key = ( $this->is_pk || $this->is_unique || $this->is_multiple );
                $this->type = $info->type;
-               $this->binary = isset( $info->binary ) ? $info->binary : false;
        }
 
        /**
@@ -1067,10 +1066,6 @@ class MySQLField implements Field {
        function isMultipleKey() {
                return $this->is_multiple;
        }
-
-       function isBinary() {
-               return $this->binary;
-       }
 }
 
 class MySQLMasterPos implements DBMasterPos {