Merge pull request #138 from andygrove/fix-skew

Fix merge skew with number literals
This commit is contained in:
Nikhil Benesch 2019-09-02 09:48:57 -04:00 committed by GitHub
commit abf68c6af6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -280,7 +280,7 @@ fn parse_set() {
Statement::SetVariable {
local: false,
variable: "a".into(),
value: SetVariableValue::Literal(Value::Long(0)),
value: SetVariableValue::Literal(number("0")),
}
);