MCPcopy Create free account
hub / github.com/apache/datafusion / Placeholder

Class Placeholder

datafusion/expr/src/expr.rs:1388–1393  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1386/// or can be specified directly using `PREPARE` statements.
1387#[derive(Clone, PartialEq, Eq, PartialOrd, Hash, Debug)]
1388pub struct Placeholder {
1389 /// The identifier of the parameter, including the leading `$` (e.g, `"$1"` or `"$foo"`)
1390 pub id: String,
1391 /// The type the parameter will be filled in with
1392 pub field: Option<FieldRef>,
1393}
1394
1395impl Placeholder {
1396 /// Create a new Placeholder expression

Callers 12

placeholderFunction · 0.85
test_expr_placeholderFunction · 0.85
expr_to_sql_innerMethod · 0.85
serialize_exprFunction · 0.85
parse_exprFunction · 0.85

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…