MCPcopy Create free account
hub / github.com/apache/paimon-rust / test_builder_unknown_column

Function test_builder_unknown_column

crates/paimon/src/spec/predicate.rs:1063–1069  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1061
1062 #[test]
1063 fn test_builder_unknown_column() {
1064 let pb = PredicateBuilder::new(&test_fields());
1065 let result = pb.equal("nonexistent", Datum::Int(1));
1066 assert!(result.is_err());
1067 let msg = format!("{}", result.unwrap_err());
1068 assert!(msg.contains("nonexistent"));
1069 }
1070
1071 // ======================== Composition helpers ========================
1072

Callers

nothing calls this directly

Calls 2

equalMethod · 0.80
test_fieldsFunction · 0.70

Tested by

no test coverage detected