Corrected the name of generated PostgreSQL boolean data type (https://www.postgresql.org/docs/13/datatype-boolean.html)

This commit is contained in:
Jose Hernandez
2021-08-01 18:00:28 +01:00
parent f7b13bd4a7
commit 4b5ff01a59

View File

@@ -82,7 +82,7 @@ static const MdbBackendType mdb_sybase_shortdate_type =
/* Postgres data types */
static const MdbBackendType mdb_postgres_types[] = {
[MDB_BOOL] = { .name = "BOOL" },
[MDB_BOOL] = { .name = "BOOLEAN" },
[MDB_BYTE] = { .name = "SMALLINT" },
[MDB_INT] = { .name = "INTEGER" },
[MDB_LONGINT] = { .name = "INTEGER" }, /* bigint */