Tickets

Issues

# XXX hack to check sqlalchemy knows how to handle the data type


                # XXX hack to check sqlalchemy knows how to handle the data type
                tmp = str(col.type).lower()  # noqa
            except NotImplementedError:
                # Ignore user defined data types
                print('Unknown datatype, ignoring column %s of table %s' % (table, col.name), file=sys.stderr)
                continue

History