mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Update MutationsInterpreter.cpp
This commit is contained in:
parent
0aa4c85602
commit
45e85724a6
@ -59,6 +59,9 @@ public:
|
||||
|
||||
if (const auto * function = typeid_cast<const ASTFunction *>(node.get()))
|
||||
{
|
||||
/// Lambda functions also may be non-deterministic. But we skip them for simplicity.
|
||||
/// Replication will work correctly even if non-deterministic function is used,
|
||||
/// it will select any of the results and discard other.
|
||||
if (function->name != "lambda")
|
||||
{
|
||||
const auto func = FunctionFactory::instance().get(function->name, data.context);
|
||||
|
Loading…
Reference in New Issue
Block a user