这是indexloc提供的服务,不要输入任何密码
Skip to content

infer types for parameters based on usage when generating native query #116

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conversation

hallettj
Copy link
Collaborator

This gets the functionality in place - this change demonstrates detecting parameters and inferring types for parameters used in equality comparisons in a $match stage. It also detects parameters in aggregation expressions in any context, but does not infer types for those yet. We'll flesh type inference in more contexts as we flesh out support for more aggregation stages, operators, etc.

All of this is still behind a feature flag, native-query-subcommand. This work is still in development and isn't ready for stable use yet.

Comment on lines +308 to +334
#[googletest::test]
fn infers_native_query_from_pipeline_with_unannotated_parameter() -> googletest::Result<()> {
let config = mflix_config();

let pipeline = Pipeline::new(vec![Stage::Match(doc! {
"title": { "$eq": "{{ title }}" },
})]);

let native_query = native_query_from_pipeline(
&config,
"movies_by_title",
Some("movies".into()),
pipeline,
)?;

expect_that!(
native_query.arguments,
unordered_elements_are![(
displays_as(eq("title")),
field!(
ObjectField.r#type,
eq(&Type::Scalar(BsonScalarType::String))
)
)]
);
Ok(())
}
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

This test demonstrates the magic

@hallettj hallettj merged commit c14e7c5 into main Oct 29, 2024
1 check passed
@hallettj hallettj deleted the jessehallett/eng-1097-support-parameters-when-generating-native-query branch October 29, 2024 20:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants