| 2012 | |
| 2013 | |
| 2014 | static bool isReadOnlyQuery(const ASTPtr & ast) |
| 2015 | { |
| 2016 | auto kind = ast->getQueryKind(); |
| 2017 | return kind == IAST::QueryKind::Select |
| 2018 | || kind == IAST::QueryKind::Explain |
| 2019 | || kind == IAST::QueryKind::Show |
| 2020 | || kind == IAST::QueryKind::Describe |
| 2021 | || kind == IAST::QueryKind::Exists; |
| 2022 | } |
| 2023 | |
| 2024 | |
| 2025 | static void executeASTFuzzerQueries(const ASTPtr & ast, const ContextMutablePtr & context, Float64 ast_fuzzer_runs_value, bool any_query) |
no test coverage detected