Skip to content

Commit

Permalink
feat(queries): Mark CHQueryErrorNoCommonType as user safe (#23314)
Browse files Browse the repository at this point in the history
Mark CHQueryErrorNoCommonType as user safe
  • Loading branch information
webjunkie authored Jun 28, 2024
1 parent c990968 commit ef12a68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion posthog/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down

0 comments on commit ef12a68

Please sign in to comment.