Skip to content
This repository was archived by the owner on Sep 12, 2018. It is now read-only.

Closes #634 - Fix variables in predicates #635

Merged
merged 3 commits into from
May 9, 2018

Conversation

fluffyemily
Copy link
Contributor

No description provided.

@fluffyemily fluffyemily requested a review from rnewman April 12, 2018 08:47
Copy link
Collaborator

@rnewman rnewman left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good; just some edge cases to touch on.

.and_then(|cols| cols.first().map(|col| QueryValue::Column(col.clone())))
.ok_or_else(|| Error::from_kind(ErrorKind::UnboundVariable(var.name())))
match self.bound_value(&var) {
// The type is already known if it's a bound variable….
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This comment doesn't make sense for this particular function.

match self.bound_value(&var) {
// The type is already known if it's a bound variable….
Some(TypedValue::Long(v)) => Ok(QueryValue::TypedValue(TypedValue::Long(v))),
Some(TypedValue::Double(v)) => Ok(QueryValue::TypedValue(TypedValue::Double(v))),
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This isn't quite right. If it's already bound to the wrong kind of value, we'll still fall through to the column binding and get an UnboundVariable error.

I think you want something like:

Some(v) => {
    bail!(ErrorKind::InputTypeDisagreement(var.name.clone(), ValueType::Long, v.value_type()));
},

and similar on line 85.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I also think you want to add ValueType::is_numeric to core, and here do:

Some(v) if v.value_type().is_numeric() => Ok(QueryValue::TypedValue(v)),
Some(v) => { bail!(…); },

— we will at some point add BigInteger support, which would introduce a bug here.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm, I don't think I can do this. The guard statement claims ownership so it's not available to the case body. If I make v a reference, the guard works but I cannot claim ownership to return the value inside the body without cloning it.

Also looks like there is ongoing discussion about this rust-lang/rfcs#2036

I will try and do something else but similar. This is where I miss Swifts chaning if-lets and guards so I could do:

guard let v = self.bound_value(&var),
          v.value_type().is_numeric() else { ... }

@fluffyemily fluffyemily force-pushed the fluffyemily/issue-634-predicate-variables branch from 78bb9bf to 7c9bfc4 Compare April 17, 2018 08:46
@fluffyemily fluffyemily requested a review from rnewman April 17, 2018 08:46
Copy link
Collaborator

@rnewman rnewman left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good apart from that one thing!

.ok_or_else(|| Error::from_kind(ErrorKind::UnboundVariable(var.name())))
match self.bound_value(&var) {
Some(TypedValue::Instant(v)) => Ok(QueryValue::TypedValue(TypedValue::Instant(v))),
_ => {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same review comment as before:

This isn't quite right. If it's already bound to the wrong kind of value, we'll still fall through to the column binding and get an UnboundVariable error.

You need a similar bail line here as there is on line 53.

@rnewman
Copy link
Collaborator

rnewman commented Apr 25, 2018

@fluffyemily don't forget to wrap this up…

@fluffyemily fluffyemily force-pushed the fluffyemily/issue-634-predicate-variables branch from 7c9bfc4 to d67cb74 Compare May 9, 2018 14:38
@fluffyemily fluffyemily requested a review from rnewman May 9, 2018 14:38
@fluffyemily
Copy link
Contributor Author

Finally. Not sure why I forgot about this.

@fluffyemily fluffyemily merged commit e1e7cba into master May 9, 2018
@fluffyemily fluffyemily deleted the fluffyemily/issue-634-predicate-variables branch May 9, 2018 15:24
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants