A schema.Table wrapper/hook for dialect-specific tweaks.
(*args, **kw)
| 24 | |
| 25 | |
| 26 | def Table(*args, **kw) -> schema.Table: |
| 27 | """A schema.Table wrapper/hook for dialect-specific tweaks.""" |
| 28 | |
| 29 | # pop out local options; these are not used at the moment |
| 30 | _ = {k: kw.pop(k) for k in list(kw) if k.startswith("test_")} |
| 31 | |
| 32 | kw.update(table_options) |
| 33 | |
| 34 | return schema.Table(*args, **kw) |
| 35 | |
| 36 | |
| 37 | def mapped_column(*args, **kw): |