fn values_view(
name: &'static str,
oid: u32,
cols: &[(&'static str, SqlScalarType, bool)],
keys: &[Vec<usize>],
rows: Vec<Vec<Lit>>,
) -> BuiltinViewExpand description
Build an ontology view from a static VALUES list. Each row is a Vec<Lit>;
all escaping and type-casting is handled here so callers never touch SQL
string formatting directly.