| 964 | } |
| 965 | |
| 966 | String serializeQuery(const IAST & query, size_t max_length) |
| 967 | { |
| 968 | return query.hasSecretParts() |
| 969 | ? query.formatForLogging(max_length) |
| 970 | : wipeSensitiveDataAndCutToLength(query.formatWithSecretsOneLine(), max_length, true); |
| 971 | } |
| 972 | |
| 973 | } |
| 974 |
no test coverage detected