Skip to content

Commit 65c22fc

Browse files
committed
fix
1 parent a9355a3 commit 65c22fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

velox/parse/IExpr.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class IExpr {
9090
/// The last alias added will win if called multiple times. Throws in case the
9191
/// subclass does not implement it.
9292
virtual ExprPtr withAlias(const std::string& alias) const {
93-
VELOX_FAIL("Unable to add alias to expression '{}'", *this);
93+
VELOX_FAIL("Unable to add alias to expression '{}'", toString());
9494
}
9595

9696
/// Returns a copy of this expression with the alias removed.

0 commit comments

Comments
 (0)