jsonl filtering fixes

This commit is contained in:
Jan Prochazka
2022-12-18 09:08:03 +01:00
parent cf3df9cda3
commit dbfdaafb86
4 changed files with 7 additions and 1 deletions

View File

@@ -6,7 +6,7 @@ import { dumpSqlSourceRef } from './dumpSqlSource';
export function evaluateExpression(expr: Expression, values) {
switch (expr.exprType) {
case 'column':
return values[expr.columnName];
return _.get(values, expr.columnName);
case 'placeholder':
return values.__placeholder;