view oracle_schema.patch @ 500:17f5d69307a9

grep working in mysql
author Catherine Devlin <catherine.devlin@gmail.com>
date Mon, 01 Nov 2010 12:22:34 -0400
parents 0b71da565ebe
children
line wrap: on
line source

171c171,174
<             schema[table_key] = Table(table_name, cursor, owner)
---
>             try:
>                 schema[table_key] = Table(table_name, cursor, owner)
>             except Exception, e:
>                 LOG.warning('Failed to get metadata for table %s.%s: %s' % (owner, table_name, str(e)))