Forum Discussion
Shg
1 year agoFrequent Visitor
Mashup Exception Expression Error
Hi, I have a Dataflow Gen2 that sources several tables from Dataflow Gen1, and both dataflows were running successfully through a pipeline and load tables into my lakehouse as data destination. I r...
ZhangKun
1 year agoSuper User
This error usually (but not necessarily) comes from performing a specific index condition on a table, as shown in the following code:
// error
#table({"a", "b"}, {{1, 2}, {3, 4}}){[a = 1, b = 3]}
// ok
#table({"a", "b"}, {{1, 2}, {3, 4}}){[a = 1, b = 2]}