mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
51f3245030
Throw an exception instead of silently ignoring two conflicting settings.
26 lines
430 B
Plaintext
26 lines
430 B
Plaintext
-- Bug 56258: Check literals (ASTLiteral)
|
|
Row 1:
|
|
──────
|
|
10: 10
|
|
Row 1:
|
|
──────
|
|
x: 10
|
|
2
|
|
-- Bug 56258: Check functions (ASTFunction)
|
|
Row 1:
|
|
──────
|
|
toUInt64(42): 42
|
|
Row 1:
|
|
──────
|
|
x: 42
|
|
2
|
|
-- Bug 56258: Check identifiers (ASTIdentifier)
|
|
Row 1:
|
|
──────
|
|
c: 1
|
|
Row 1:
|
|
──────
|
|
x: 1
|
|
2
|
|
-- Bug 67476: Queries with overflow mode != throw must not be cached by the query cache
|