prsqlite
prsqlite copied to clipboard
Pure Rust implementation of SQLite
Results
22
prsqlite issues
Sort by
recently updated
recently updated
newest added
sqlite computes the b-tree page header by ternary operator. ```c first = hdr + ((flags&PTF_LEAF)==0 ? 12 : 8); ``` https://github.com/sqlite/sqlite/blob/e17cac189fb40f4b1ccca04e54bf8163de555ae3/src/btree.c#L2162 But we can compute it without conditional branch. ```rust...