| 161 | |
| 162 | |
| 163 | void DDLTaskBase::parseQueryFromEntry(ContextPtr context) |
| 164 | { |
| 165 | const char * begin = entry.query.data(); |
| 166 | const char * end = begin + entry.query.size(); |
| 167 | |
| 168 | ParserQuery parser_query(end, ParserSettings::valueOf(context->getSettingsRef())); |
| 169 | String description; |
| 170 | query = parseQuery(parser_query, begin, end, description, 0, context->getSettingsRef().max_parser_depth); |
| 171 | } |
| 172 | |
| 173 | void DDLTaskBase::formatRewrittenQuery(ContextPtr context) |
| 174 | { |
no test coverage detected