From c69d69a3a21f6cda93bad990a953b88ddd1745a1 Mon Sep 17 00:00:00 2001 From: Tiago Ribeiro Date: Mon, 10 Feb 2025 00:19:44 -0700 Subject: [PATCH] Update python bindings to use the new retrieval methods to access Record values. --- bindings/python/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/src/lib.rs b/bindings/python/src/lib.rs index fb8189c2d..31a82389d 100644 --- a/bindings/python/src/lib.rs +++ b/bindings/python/src/lib.rs @@ -300,7 +300,7 @@ pub fn connect(path: &str) -> Result { fn row_to_py(py: Python, row: &limbo_core::Row) -> PyObject { let py_values: Vec = row - .values + .get_values() .iter() .map(|value| match value.to_value() { limbo_core::Value::Null => py.None(),