summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvain Th?nault <sylvain.thenault@logilab.fr>2009-12-23 08:59:38 +0100
committerSylvain Th?nault <sylvain.thenault@logilab.fr>2009-12-23 08:59:38 +0100
commita15bf6b0937132dc1f9ada0262ab74d70035f575 (patch)
treee6c0d1f284b5508879ca212672a2792d488e2028
parent1125ea5d48cbed0e5672ba5bab4d6d53d79abd88 (diff)
downloadlogilab-common-a15bf6b0937132dc1f9ada0262ab74d70035f575.tar.gz
TYPE_MAPPING expected to be a mapping from yams type to db type, and timestamp is the Datetime yams type
-rw-r--r--adbh.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/adbh.py b/adbh.py
index 61a56c0..4e7f18d 100644
--- a/adbh.py
+++ b/adbh.py
@@ -136,7 +136,6 @@ class _GenericAdvFuncHelper:
'Interval' : 'interval',
'Password' : 'bytea',
'Bytes' : 'bytea',
- 'TIMESTAMP': 'TIMESTAMP',
}
@@ -587,7 +586,6 @@ class _SqlServer2005FuncHelper(_GenericAdvFuncHelper):
'Interval' : 'interval',
'Password' : 'varbinary(255)',
'Bytes' : 'varbinary(max)',
- 'TIMESTAMP': 'datetime',
}
def list_tables(self, cursor):