1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-22 18:50:08 +03:00

B #5018: Fix multiple_value support for PostgreSQL (#456)

This commit is contained in:
Pavel Czerný 2020-11-24 09:46:59 +01:00 committed by GitHub
parent 313e8a231e
commit f9c7740459
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -90,7 +90,7 @@ PostgreSqlDB::PostgreSqlDB(
}
features = {
{SqlFeature::MULTIPLE_VALUE, PQlibVersion() < 80200},
{SqlFeature::MULTIPLE_VALUE, PQlibVersion() > 80200},
{SqlFeature::LIMIT, false},
{SqlFeature::FTS, false},
{SqlFeature::COMPARE_BINARY, false}