From ef12a6800779b41214754a8facb644161a30d4fb Mon Sep 17 00:00:00 2001 From: Julian Bez Date: Fri, 28 Jun 2024 12:00:43 +0100 Subject: [PATCH] feat(queries): Mark CHQueryErrorNoCommonType as user safe (#23314) Mark CHQueryErrorNoCommonType as user safe --- posthog/errors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posthog/errors.py b/posthog/errors.py index cdade09b0f127..920385a458ea9 100644 --- a/posthog/errors.py +++ b/posthog/errors.py @@ -399,7 +399,7 @@ class CHQueryErrorTooManySimultaneousQueries(InternalCHQueryError): 383: ErrorCodeMeta("CANNOT_APPLY_CATBOOST_MODEL"), 384: ErrorCodeMeta("PART_IS_TEMPORARILY_LOCKED"), 385: ErrorCodeMeta("MULTIPLE_STREAMS_REQUIRED"), - 386: ErrorCodeMeta("NO_COMMON_TYPE"), + 386: ErrorCodeMeta("NO_COMMON_TYPE", user_safe=True), 387: ErrorCodeMeta("DICTIONARY_ALREADY_EXISTS"), 388: ErrorCodeMeta("CANNOT_ASSIGN_OPTIMIZE"), 389: ErrorCodeMeta("INSERT_WAS_DEDUPLICATED"),