| 239 | } |
| 240 | |
| 241 | static void checkASTSizeLimits(const IAST & ast, const Settings & settings) |
| 242 | { |
| 243 | if (settings[Setting::max_ast_depth]) |
| 244 | ast.checkDepth(settings[Setting::max_ast_depth]); |
| 245 | if (settings[Setting::max_ast_elements]) |
| 246 | ast.checkSize(settings[Setting::max_ast_elements]); |
| 247 | } |
| 248 | |
| 249 | |
| 250 | /// Log query into text log (not into system table). |
no test coverage detected