MariaDB: Remove version checking lower the 5.5.8

Since we already bumped the minimum version of MySQL to 5.5.8 at #33853.
This commit is contained in:
Ryuta Kamizono 2019-01-02 10:35:20 +09:00
parent ed51351536
commit fb6743acc5

@ -97,19 +97,11 @@ def supports_views?
end
def supports_datetime_with_precision?
if mariadb?
version >= "5.3.0"
else
version >= "5.6.4"
end
mariadb? || version >= "5.6.4"
end
def supports_virtual_columns?
if mariadb?
version >= "5.2.0"
else
version >= "5.7.5"
end
mariadb? || version >= "5.7.5"
end
def supports_advisory_locks?