Hacker News new | ask | show | jobs
by justsomeuser 1877 days ago
Also I think SQLite lets you call Python functions from the SQL program.
1 comments

That's correct, but SQLite would require to serialize/deserialize the data sent to Python func (from C to Python and back), while Arrow allows to get a "view" of the same data without making a copy. Which is probably not an issue in OLTP workloads, but may become more visible in OLAP.