Open
Conversation
… backend Replace the closed IRNode discriminated union with an open ITableOp interface that anyone can implement for custom table-valued operations. Add a zero- dependency RecordsExecutor that operates over plain JS arrays of records, serving as a lightweight alternative to SQL backends like DuckDB. - ITableOp interface with schema(), sources(), kind - Built-in implementations: FromOp, FilterOp, DeriveOp, GroupOp, SortOp, TakeOp - RecordsExecutor: evaluates full pipelines over in-memory data - RecordsOp: data source backed by an array of records - fromRecords() factory with automatic schema inference - Extensibility via addTableOpHandler() and addValueOpHandler() - Custom SampleOp in tests proves third-party extensibility - Two new playground examples: in-memory backend and custom table op https://claude.ai/code/session_01NneLMS5kRkajzxQc44Ukz6
…classing - Remove sources() method from ITableOp interface and all implementations - Remove addTableOpHandler/addValueOpHandler from RecordsExecutor - Change private execute helpers to protected for subclass access - Extensibility is now via subclassing: override execute()/evalOp() and delegate to super for built-in ops - Update tests and playground example to use subclassing pattern https://claude.ai/code/session_01NneLMS5kRkajzxQc44Ukz6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.