diff --git a/src/util/sqlhelper.cpp b/src/util/sqlhelper.cpp index 47c386c..0e45713 100644 --- a/src/util/sqlhelper.cpp +++ b/src/util/sqlhelper.cpp @@ -77,7 +77,11 @@ namespace hsql { break; } printExpression(expr->expr, numIndent + 1); - if (expr->expr2 != nullptr) printExpression(expr->expr2, numIndent + 1); + if (expr->expr2 != nullptr) { + printExpression(expr->expr2, numIndent + 1); + } else if (expr->exprList != nullptr) { + for (Expr* e : *expr->exprList) printExpression(e, numIndent + 1); + } } void printExpression(Expr* expr, uintmax_t numIndent) {