Added nested structure scan.

This commit is contained in:
sub0Zero 2019-03-09 14:20:44 +01:00 committed by zer0sub
parent 7d7dda3b7a
commit 3f4b5c69d3
5 changed files with 124 additions and 21 deletions

View file

@ -443,7 +443,7 @@ func Eq(lhs, rhs Expression) BoolExpression {
if ok && sqltypes.Value(lit.value).IsNull() {
return newBoolExpression(lhs, rhs, []byte(" IS "))
}
return newBoolExpression(lhs, rhs, []byte("="))
return newBoolExpression(lhs, rhs, []byte(" = "))
}
// Returns a representation of "a=b", where b is a literal