limbo/core/translate
Preston Thorpe 9e75e23eb6
Some checks are pending
Build and push limbo-sim image / deploy (push) Waiting to run
C compat Tests / test (push) Waiting to run
Dart/Flutter / test (blacksmith-4vcpu-ubuntu-2404) (push) Waiting to run
Dart/Flutter / test (windows-latest) (push) Waiting to run
Dart/Flutter / precompile (blacksmith-4vcpu-ubuntu-2404) (push) Waiting to run
Dart/Flutter / precompile (macOS-latest) (push) Waiting to run
Dart/Flutter / precompile (windows-latest) (push) Waiting to run
Dart/Flutter / publish (push) Waiting to run
Run long fuzz tests and stress test / run-fuzz-tests (push) Waiting to run
Run long fuzz tests and stress test / run-long-fuzz-tests (push) Waiting to run
Run long fuzz tests and stress test / simple-stress-test (push) Waiting to run
Java Tests / test (push) Waiting to run
Build & publish @tursodatabase/database / db-bindings-aarch64-apple-darwin - node@20 (push) Waiting to run
Build & publish @tursodatabase/database / db-bindings-aarch64-unknown-linux-gnu - node@20 (push) Waiting to run
Build & publish @tursodatabase/database / sync-bindings-x86_64-pc-windows-msvc - node@20 (push) Waiting to run
Build & publish @tursodatabase/database / db-bindings-wasm32-wasip1-threads - node@20 (push) Waiting to run
Build & publish @tursodatabase/database / db-bindings-x86_64-pc-windows-msvc - node@20 (push) Waiting to run
Build & publish @tursodatabase/database / db-bindings-x86_64-unknown-linux-gnu - node@20 (push) Waiting to run
Build & publish @tursodatabase/database / sync-bindings-aarch64-apple-darwin - node@20 (push) Waiting to run
Build & publish @tursodatabase/database / sync-bindings-aarch64-unknown-linux-gnu - node@20 (push) Waiting to run
Build & publish @tursodatabase/database / sync-bindings-wasm32-wasip1-threads - node@20 (push) Waiting to run
Build & publish @tursodatabase/database / sync-bindings-x86_64-unknown-linux-gnu - node@20 (push) Waiting to run
Python / configure-strategy (push) Waiting to run
Build & publish @tursodatabase/database / Test DB bindings on Linux-x64-gnu - node@20 (push) Blocked by required conditions
Build & publish @tursodatabase/database / Test DB bindings on browser@20 (push) Blocked by required conditions
Build & publish @tursodatabase/database / Publish (push) Blocked by required conditions
Python / test (push) Blocked by required conditions
Python / lint (push) Waiting to run
Python / linux (x86_64) (push) Waiting to run
Python / macos-arm64 (aarch64) (push) Waiting to run
Python / sdist (push) Waiting to run
Python / Release (push) Blocked by required conditions
Rust / cargo-fmt-check (push) Waiting to run
Rust / build-native (blacksmith-4vcpu-ubuntu-2404) (push) Waiting to run
Rust / build-native (macos-latest) (push) Waiting to run
Rust / build-native (windows-latest) (push) Waiting to run
Rust / clippy (push) Waiting to run
Rust / simulator (push) Waiting to run
Rust / test-limbo (push) Waiting to run
Rust / test-sqlite (push) Waiting to run
Rust Benchmarks+Nyrkiö / clickbench (push) Waiting to run
Rust Benchmarks+Nyrkiö / tpc-h-criterion (push) Waiting to run
Rust Benchmarks+Nyrkiö / vfs-bench-compile (push) Waiting to run
Rust Benchmarks+Nyrkiö / bench (push) Waiting to run
Rust Benchmarks+Nyrkiö / tpc-h (push) Waiting to run
Merge 'feat: adding check for unquoted literals in values()' from Rohith Suresh
Closes #3949
Closes #4018
```
turso> values(asdf);
  × Parse error: Unquoted identifier in VALUES clause: asdf
  
turso> select * from users;
┌────┬──────┐
│ id │ name │
├────┼──────┤
│  1 │ jack │
├────┼──────┤
│  2 │ jill │
└────┴──────┘
  turso> select id, (values(name)) as name_again from users;
┌────┬────────────┐
│ id │ name_again │
├────┼────────────┤
│  1 │ jack       │
├────┼────────────┤
│  2 │ jill       │
└────┴────────────┘
```

Reviewed-by: Preston Thorpe <preston@turso.tech>

Closes #4003
2025-12-09 10:15:11 -05:00
..
optimizer chore: remove experimental_indexes feature flags 2025-12-08 13:00:37 +02:00
aggregation.rs Store Cow<&Expr> in expr_to_reg_cache 2025-11-13 09:32:37 +02:00
alter.rs chore: remove experimental_indexes feature flags 2025-12-08 13:00:37 +02:00
analyze.rs Optimize and refactor schema::Column type 2025-11-02 20:46:02 -05:00
attach.rs Fix clippy warnings 2025-09-26 12:17:34 -04:00
collate.rs Use expression indexes as covering when possible 2025-11-20 12:47:50 -05:00
compound_select.rs chore: remove experimental_indexes feature flags 2025-12-08 13:00:37 +02:00
delete.rs chore: remove experimental_indexes feature flags 2025-12-08 13:00:37 +02:00
display.rs Fix clippy warnings 2025-12-04 16:09:47 -05:00
emitter.rs Cache result column values in the hashtable to prevent additional SeekRowID 2025-12-04 16:09:48 -05:00
expr.rs Merge branch 'tursodatabase:main' into dot-product-distance 2025-12-05 23:58:34 +05:30
expression_index.rs Use expression indexes as covering when possible 2025-11-20 12:47:50 -05:00
fkeys.rs cargo fmt 2025-11-17 12:22:55 -05:00
group_by.rs Store Cow<&Expr> in expr_to_reg_cache 2025-11-13 09:32:37 +02:00
index.rs chore: remove experimental_indexes feature flags 2025-12-08 13:00:37 +02:00
insert.rs chore: remove experimental_indexes feature flags 2025-12-08 13:00:37 +02:00
integrity_check.rs ignore "virtual" index entries corresponding to the index_methods from integrity check 2025-10-31 14:25:59 +04:00
logical.rs chore: remove experimental_indexes feature flags 2025-12-08 13:00:37 +02:00
main_loop.rs Fix descending index scan returning rows when seek key is NULL 2025-12-08 13:19:58 +02:00
mod.rs Add expression_index.rs to translate module with some helpers 2025-11-20 12:47:50 -05:00
order_by.rs Begin to implement index creation on arbitrary expressions 2025-11-20 12:47:45 -05:00
plan.rs Fix condition evaluation that references hash build table now that its no longer in join order 2025-12-04 16:09:49 -05:00
planner.rs chore: remove experimental_indexes feature flags 2025-12-08 13:00:37 +02:00
pragma.rs adjust registers allocation 2025-11-20 18:00:54 +04:00
result_row.rs triggers: add capability for DeletePlan to write the write set into a RowSet first 2025-11-18 15:19:01 +02:00
rollback.rs translate: refactor arguments and centralize parameter context 2025-09-26 12:06:44 -04:00
schema.rs chore: remove experimental_indexes feature flags 2025-12-08 13:00:37 +02:00
select.rs Merge 'feat: adding check for unquoted literals in values()' from Rohith Suresh 2025-12-09 10:15:11 -05:00
subquery.rs Fix clippy warnings 2025-12-04 16:09:47 -05:00
transaction.rs Add BEGIN CONCURRENT support for MVCC mode 2025-09-11 16:05:52 +03:00
trigger.rs don't allow triggers on system tables 2025-11-26 07:43:15 +05:30
trigger_exec.rs do not store MvStore in Statements. Always get them from database 2025-12-03 10:09:04 -03:00
update.rs chore: remove experimental_indexes feature flags 2025-12-08 13:00:37 +02:00
upsert.rs run BEFORE and AFTER update triggers on upserts 2025-12-06 15:20:24 -05:00
values.rs feat: fixing name resolution for identifiers inside VALUES() 2025-11-23 12:14:56 +05:30
view.rs Fix: Drop internal DBSP table when dropping materialized view 2025-11-08 20:28:20 +01:00
window.rs Store Cow<&Expr> in expr_to_reg_cache 2025-11-13 09:32:37 +02:00