You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We support SELECT ... VALUES in Limbo, but not plain VALUES:
limbo> VALUES
('Monty Python and the Holy Grail', 1975, 8.2),
('And Now for Something Completely Different', 1971, 7.5);
thread 'main' panicked at core/translate/select.rs:336:14:
not yet implemented
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
sqlite> VALUES
('Monty Python and the Holy Grail', 1975, 8.2),
('And Now for Something Completely Different', 1971, 7.5);
Monty Python and the Holy Grail|1975|8.2
And Now for Something Completely Different|1971|7.5
The text was updated successfully, but these errors were encountered:
I want to pick this up, but I noticed something. SELECT * FROM (values(...)) is also not implemented.
sqlite> SELECT * FROM (VALUES(1, 2, 'a'));
1|2|a
limbo> SELECT * FROM (VALUES(1, 2, 'a'));
thread 'main' panicked at core/translate/select.rs:337:43:
not yet implemented
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
I tried searching for values throughout the codebase and only found examples of INSERT INTO ... VALUES. So should this issue represent both SELECT ... VALUES and VALUES?
We support
SELECT ... VALUES
in Limbo, but not plainVALUES
:The text was updated successfully, but these errors were encountered: