MCPcopy Create free account
hub / github.com/asg017/sqlite-loadable-rs / column

Method column

tests/test_find_function.rs:117–123  ·  view source on GitHub ↗
(&self, context: *mut sqlite3_context, i: c_int)

Source from the content-addressed store, hash-verified

115 }
116
117 fn column(&self, context: *mut sqlite3_context, i: c_int) -> Result<()> {
118 match column(i) {
119 Some(Columns::A) => api::result_text(context, "Bare A access!")?,
120 _ => (),
121 };
122 Ok(())
123 }
124
125 fn rowid(&self) -> Result<i64> {
126 Ok(self.rowid)

Callers

nothing calls this directly

Calls 2

result_textFunction · 0.85
columnFunction · 0.70

Tested by

no test coverage detected