Processes each table in a schema.
(schema, tokenizer, aligned_schema_entities)
| 181 | |
| 182 | |
| 183 | def process_tables(schema, tokenizer, aligned_schema_entities): |
| 184 | """Processes each table in a schema.""" |
| 185 | return [ |
| 186 | process_table(table_name, columns, tokenizer, aligned_schema_entities) |
| 187 | for table_name, columns in schema.items() |
| 188 | ] |
| 189 | |
| 190 | |
| 191 | def get_schema_entities(schema): |
no test coverage detected
searching dependent graphs…