| 13 | }; |
| 14 | |
| 15 | pub trait ToSQL { |
| 16 | fn to_sql(self, dialect: SQLDialect) -> crate::Result<String>; |
| 17 | } |
| 18 | |
| 19 | fn add_schema(builder: &mut SQLBuilder) { |
| 20 | create_dictionaries(builder); |
nothing calls this directly
no outgoing calls
no test coverage detected