Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Offset is not supported on limbo #739

Open
Tracked by #738
psvri opened this issue Jan 19, 2025 · 0 comments
Open
Tracked by #738

Offset is not supported on limbo #739

psvri opened this issue Jan 19, 2025 · 0 comments
Labels
bug Something isn't working compat help wanted Extra attention is needed

Comments

@psvri
Copy link
Contributor

psvri commented Jan 19, 2025

As shown below, limbo is not respecting offset.

Sqlite3 output

sqlite>  create table temp (t1 integer, primary key (t1));
sqlite>     insert into temp values (1),(2.0),('3'),('4.0');
sqlite>  select * from temp limit 1 offset 1;
2

LImbo Output

limbo> create table temp (t1 integer, primary key (t1));
limbo> insert into temp values (1),(2.0),('3'),('4.0');
limbo> select * from temp limit 1 offset 1;
1
@psvri psvri mentioned this issue Jan 19, 2025
4 tasks
@penberg penberg added bug Something isn't working help wanted Extra attention is needed compat labels Jan 19, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working compat help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

2 participants