(self, table)
| 1142 | LOG.warn('Could not create index on %s.%s: %s' % (table_name, col.name, e)) |
| 1143 | |
| 1144 | def make_create_table_sql(self, table): |
| 1145 | table_sql = super(MySQLConnection, self).make_create_table_sql(table) |
| 1146 | table_sql += ' ENGINE = MYISAM' |
| 1147 | return table_sql |
| 1148 | |
| 1149 | |
| 1150 | class OracleCursor(DbCursor): |
nothing calls this directly
no test coverage detected