MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / Op

Class Op

src/sql-parser/src/ast/defs/expr.rs:1070–1075  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1068/// A reference to an operator.
1069#[derive(Debug, Clone, PartialEq, Eq, Hash, PartialOrd, Ord)]
1070pub struct Op {
1071 /// Any namespaces that preceded the operator.
1072 pub namespace: Option<Vec<Ident>>,
1073 /// The operator itself.
1074 pub op: String,
1075}
1076
1077impl AstDisplay for Op {
1078 fn fmt<W: fmt::Write>(&self, f: &mut AstFormatter<W>) {

Callers 3

plan_opFunction · 0.50
lex_opFunction · 0.50
parse_literal_intMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected