MCPcopy Create free account
hub / github.com/cosdata/cosdata / inference_type

Function inference_type

org/src/cosql.rs:608–613  ·  view source on GitHub ↗
(input: &str)

Source from the content-addressed store, hash-verified

606}
607
608fn inference_type(input: &str) -> IResult<&str, InferenceType> {
609 alt((
610 map(tag("derive"), |_| InferenceType::Derive),
611 map(tag("materialize"), |_| InferenceType::Materialize),
612 ))(input)
613}
614
615// Update the Rule struct to match the parser
616#[derive(Debug)]

Callers 1

ruleFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected