@@ -114,7 +114,13 @@ pub mod raw {
114114 /// - `(val, val_len)` cannot be decoded to an `AlgebraicValue`
115115 /// typed at the `AlgebraicType` of the column,
116116 /// - `val + val_len` overflows a 64-bit integer
117- pub fn _iter_by_col_eq ( table_id : TableId , col_id : ColId , val : * const u8 , val_len : usize , out : * mut Buffer ) -> u16 ;
117+ pub fn _iter_by_col_eq (
118+ table_id : TableId ,
119+ col_id : ColId ,
120+ val : * const u8 ,
121+ val_len : usize ,
122+ out : * mut Buffer ,
123+ ) -> u16 ;
118124
119125 /// Inserts a row into the table identified by `table_id`,
120126 /// where the row is read from the byte slice `row` in WASM memory,
@@ -150,7 +156,13 @@ pub mod raw {
150156 /// according to the `AlgebraicType` that the table's schema specifies for `col_id`.
151157 /// - `value + value_len` overflows a 64-bit integer
152158 /// - writing to `out` would overflow a 32-bit integer
153- pub fn _delete_by_col_eq ( table_id : TableId , col_id : ColId , value : * const u8 , value_len : usize , out : * mut u32 ) -> u16 ;
159+ pub fn _delete_by_col_eq (
160+ table_id : TableId ,
161+ col_id : ColId ,
162+ value : * const u8 ,
163+ value_len : usize ,
164+ out : * mut u32 ,
165+ ) -> u16 ;
154166
155167 /*
156168 /// Deletes the primary key pointed to at by `pk` in the table identified by `table_id`.
@@ -189,7 +201,12 @@ pub mod raw {
189201 /// - a table with the provided `table_id` doesn't exist
190202 /// - `(filter, filter_len)` doesn't decode to a filter expression
191203 /// - `filter + filter_len` overflows a 64-bit integer
192- pub fn _iter_start_filtered ( table_id : TableId , filter : * const u8 , filter_len : usize , out : * mut BufferIter ) -> u16 ;
204+ pub fn _iter_start_filtered (
205+ table_id : TableId ,
206+ filter : * const u8 ,
207+ filter_len : usize ,
208+ out : * mut BufferIter ,
209+ ) -> u16 ;
193210
194211 /// Advances the registered iterator with the index given by `iter_key`.
195212 ///
0 commit comments