Skip to content

Client::join API#3143

Draft
texodus wants to merge 1 commit intomasterfrom
engine-inner-joins
Draft

Client::join API#3143
texodus wants to merge 1 commit intomasterfrom
engine-inner-joins

Conversation

@texodus
Copy link
Member

@texodus texodus commented Mar 23, 2026

This PR adds Client::join(left, right, on) — a reactive SQL INNER JOIN that produces a read-only Table from two source tables.

const left = await worker.table(data);
const right = await worker.table(other_data);
const joined_table = await Client.join(left, right, on, "Row ID");

Signed-off-by: Andrew Stein <steinlink@gmail.com>
@texodus texodus added the enhancement Feature requests or improvements label Mar 23, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement Feature requests or improvements

Development

Successfully merging this pull request may close these issues.

1 participant