penberg / limbo

Limbo is a work-in-progress, in-process OLTP database management system, compatible with SQLite.
MIT License
960 stars 53 forks source link

Function call with star as argument is not supported #251

Closed penberg closed 3 weeks ago

penberg commented 1 month ago
limbo> SELECT count(*) FROM users;
thread 'main' panicked at core/translate/expr.rs:538:47:
not yet implemented
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
vegarsti commented 1 month ago

Are there other functions than count which work with *? I can't think of any

vegarsti commented 1 month ago

I made a tentative approach here, I'm sure there's lots more to think about! https://github.com/penberg/limbo/pull/285

jussisaurio commented 3 weeks ago
limbo> select count(*) from products;
11