From 959225af556960983033d9084af35d2a5f1b0c2f Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Mon, 10 Sep 2012 19:28:15 +0200 Subject: [PATCH] Minor fix --- plugins/generic/databases.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/generic/databases.py b/plugins/generic/databases.py index 8c3633957..24507c236 100644 --- a/plugins/generic/databases.py +++ b/plugins/generic/databases.py @@ -640,7 +640,7 @@ class Databases: colType = inject.getValue(query, inband=False, error=False) if Backend.isDbms(DBMS.FIREBIRD): - colType = firebirdTypes.get(colType, colType) + colType = FIREBIRD_TYPES.get(colType, colType) column = safeSQLIdentificatorNaming(column) columns[column] = colType