Setup the mostly-non-schema table options, like caching settings
(self, row)
| 2612 | return table_meta |
| 2613 | |
| 2614 | def _build_table_options(self, row): |
| 2615 | """ Setup the mostly-non-schema table options, like caching settings """ |
| 2616 | return dict((o, row.get(o)) for o in self.recognized_table_options if o in row) |
| 2617 | |
| 2618 | def _build_table_columns(self, meta, col_rows, compact_static=False, is_dense=False, virtual=False): |
| 2619 | # partition key |
no test coverage detected