Skip to content

[SEA-NodeJS] (5/8) executeStatement + openSession (sessionConfig, initialCatalog/Schema) - #382

Closed
msrathore-db wants to merge 3 commits into
msrathore/sea-authfrom
msrathore/sea-execution
Closed

[SEA-NodeJS] (5/8) executeStatement + openSession (sessionConfig, initialCatalog/Schema)#382
msrathore-db wants to merge 3 commits into
msrathore/sea-authfrom
msrathore/sea-execution

Conversation

@msrathore-db

@msrathore-dbmsrathore-db commented May 16, 2026

Copy link
Copy Markdown
Contributor

Stack

Linear stack of 8 PRs landing the M0 + M1 Phase 1 SEA NodeJS work. Merge in order from base ↑ to tip. The tip branch (msrathore/sea-auth-u2m, PR #383) is the single snapshot containing everything in flight — point your test or benchmark harness at it for an end-to-end check.

PosPRBranchScope
1/8#378sea-abstractionIBackend / ISessionBackend / IOperationBackend interfaces
2/8#380sea-napi-bindingTS loader + build script for the kernel-provided .node artifact
3/8#377sea-errors-loggingKernel ErrorCode → JS error-class mapping (M0 minimum)
4/8#379sea-authPAT auth via useSEA: true
5/8#382sea-executionexecuteStatement + openSession (sessionConfig, initialCatalog/Schema)
6/8#381sea-resultsCloudFetch + Inline Arrow result fetching
7/8#384sea-operationcancel / close / finished lifecycle + INTERVAL parity + napi-relocation acceptance (absorbed sea-integration content)
8/8#383sea-auth-u2m← TIPM1 Phase 1 OAuth M2M + U2M (5 review rounds, ZERO HIGH at close)

Companion kernel stack (databricks/databricks-sql-kernel): 8 PRs — root #26 (async-public-api) → #27#25#29#28#30#24#23 (tip).

Policy: new PRs always stack on the current tip. No sibling/parallel topology. No force-pushes on existing PRs unless absolutely necessary; if a PR's content is wrong, add a fix-up commit on top of the stack tip rather than rewriting history.


This PR is position 5/8.

Summary

Implements SeaSessionBackend.executeStatement() and openSession() — the core SEA execution surface. Honors sessionConfig, initialCatalog, initialSchema on connect.

Size note (1439 LOC)

openSession + executeStatement are tightly coupled; splitting them creates a non-functional intermediate state. Reviewer-friendly approach: read commit-by-commit; each commit is a coherent slice of the feature.

Downstream fixes / reviewer note

Test plan

  • ✅ M0 e2e at 535ms vs pecotesting
  • ✅ runAsync polling internal to kernel; JS sees a sync-shaped promise
  • ✅ openSession honors sessionConfig + initialCatalog + initialSchema

Draft until you give the go for review.

Tracking

  • PECOBLR-2666 — NodeJS SEA integration (parent epic — core M0 executeStatement / openSession)

Co-authored-by: Isaac

@github-actions

Copy link
Copy Markdown

Thanks for your contribution! To satisfy the DCO policy in our contributing guide every commit message must include a sign-off message. One or more of your commits is missing this message. You can reword previous commit messages with an interactive rebase (git rebase -i main).

@msrathore-db
msrathore-dbforce-pushed the msrathore/sea-execution branch from 130b483 to d529954CompareMay 17, 2026 13:22
@msrathore-db
msrathore-db changed the base branch from main to msrathore/sea-authMay 17, 2026 13:22
@github-actions

Copy link
Copy Markdown

Thanks for your contribution! To satisfy the DCO policy in our contributing guide every commit message must include a sign-off message. One or more of your commits is missing this message. You can reword previous commit messages with an interactive rebase (git rebase -i main).

@github-actions

Copy link
Copy Markdown

Thanks for your contribution! To satisfy the DCO policy in our contributing guide every commit message must include a sign-off message. One or more of your commits is missing this message. You can reword previous commit messages with an interactive rebase (git rebase -i main).

@msrathore-db
msrathore-dbforce-pushed the msrathore/sea-execution branch from da92c45 to 6be8799CompareMay 24, 2026 23:31
msrathore-db added a commit that referenced this pull request May 29, 2026
… IOperationBackend (#378)
* sea-abstraction: introduce IBackend / ISessionBackend / IOperationBackend
Refactors DBSQLClient/Session/Operation to dispatch through three
backend interfaces. ThriftBackend (lib/thrift-backend/) contains the
relocated existing thrift logic. SeaBackend (lib/sea/) is a stub for
M0; the sea-napi-binding feature wires the real impl.
Public surface (lib/index.ts) unchanged.
No new dependencies. All existing tests pass.
Files:
- lib/contracts/IBackend.ts (new)
- lib/contracts/ISessionBackend.ts (new)
- lib/contracts/IOperationBackend.ts (new)
- lib/contracts/IDBSQLClient.ts (adds useSEA?: boolean to ConnectionOptions)
- lib/thrift-backend/ThriftBackend.ts (new)
- lib/thrift-backend/ThriftSessionBackend.ts (new)
- lib/thrift-backend/ThriftOperationBackend.ts (new)
- lib/sea/SeaBackend.ts (new, M0 stub)
- lib/DBSQLClient.ts (dispatch through IBackend; useSEA picks SeaBackend)
- lib/DBSQLSession.ts (facade over ISessionBackend; staging stays here)
- lib/DBSQLOperation.ts (facade over IOperationBackend; iterators/fetchAll stay here)
- tests/unit/DBSQLClient.test.ts (retarget internal state lookup through backend; pre-seed client.backend in tests that bypass connect())
- tests/unit/DBSQLOperation.test.ts (retarget internal state lookup through backend)
* sea-abstraction: cleanup — restore JSDoc, dedupe test pre-seed, fix inline type
Addresses code-bloat-watchdog findings from commit 0085928:
- Restores public-API JSDoc on DBSQLSession + DBSQLOperation methods
(was deleted as scope creep; contracts unchanged so docs still apply)
- Adds makeStubbedClient() helper to tests/unit/DBSQLClient.test.ts;
replaces 14× duplicated ThriftBackend pre-seed
- Imports WaitUntilReadyOptions instead of inline option types in
IOperationBackend + DBSQLOperation.waitUntilReady
* sea-abstraction: address full-review findings (F1-F17 except F5)
Round-N fixes from the 9-reviewer pre-review. Public IOperation/DBSQLOperation
surface preserved byte-identical; backend interfaces (IBackend / ISessionBackend
/ IOperationBackend) made fully neutral so both Thrift and SEA can implement
the same contract.
F1 — neutral DTOs at IOperationBackend with Thrift-shape preservation on the
public facade (adapter pattern):
- lib/contracts/OperationStatus.ts (new) — neutral OperationStatus + OperationState
enum mirroring databricks-sql-python's CommandState and kernel pyo3's
StatementStatus taxonomy.
- lib/contracts/ResultMetadata.ts (new) — neutral ResultMetadata + ResultFormat
enum mirroring the three TSparkRowSetType cases.
- IOperationBackend.status()/getResultMetadata() return the neutral DTOs.
- ThriftOperationBackend.status() adapts at the boundary via adaptOperationStatus
/ adaptResultMetadata; module-level helpers thriftStateToOperationState and
thriftRowSetTypeToResultFormat do the enum maps.
- ThriftOperationBackend exposes thriftStatusResponse() and
thriftResultMetadataResponse() as public Thrift-only accessors used by the
facade's zero-loss fast path (kept for internal state-machine + result-handler
dispatch as well).
- lib/utils/thriftWireSynthesis.ts (new) — synthesizeThriftStatus and
synthesizeThriftResultSetMetadata: convert neutral DTOs back to Thrift wire
shape for the non-Thrift backend path. Lossy on Thrift-only fields
(taskStatus, numModifiedRows, cacheLookupResult, etc.).
- DBSQLOperation.status() and getMetadata() preserved Thrift return shape:
Thrift backend path returns the real wire response (zero loss); non-Thrift
backend path synthesizes via the new helpers.
- DBSQLOperation.getResultMetadata() — new additive neutral accessor on
IOperation; DBSQLSession.handleStagingOperation uses it instead of the
deprecated Thrift-shaped getMetadata().
F2 — IBackend.connect() is now zero-arg. Backend reads everything it needs
from IClientContext / constructor; matches Python connector's pattern of
passing session_configuration via constructor not method-arg.
F3 — Restore the 'Server protocol version' debug log dropped by the original
PR-378 refactor. Re-added to ThriftSessionBackend.constructor with the
LogLevel.debug + IClientContext.getLogger() pattern; matches the pre-refactor
log site at main:lib/DBSQLSession.ts:175.
F4 + F11 + F14 — SeaBackend stub safety:
- close() is a no-op so DBSQLClient.close()'s state-clearing block can finish
even after a useSEA: true connect() failure.
- connect() and openSession() throw HiveDriverError instead of generic Error,
matching the rest of the codebase.
- connect(options: ConnectionOptions) and openSession(request: OpenSessionRequest)
declare their parameters (with @typescript-eslint/no-unused-vars disable)
so IDE autocomplete prompts the M1 SEA implementer.
F6 + F7 + F9 + F10 — JSDoc on backend interfaces:
- IBackend: connect/openSession/close docstrings; close() doc explicitly
states transport-layer cleanup is owned by DBSQLClient.
- ISessionBackend: copy IDBSQLSession's per-method one-liner JSDoc.
- IOperationBackend: doc hasResultSet (readonly external; mutates internally),
waitUntilReady (MUST throw OperationStateError on terminal non-success).
F8 — tests/unit/sea/SeaBackend.test.ts (new) locks in the stub contract:
connect() rejects HiveDriverError, openSession() rejects HiveDriverError,
close() resolves no-op. ~30 LOC.
F12 — Drop legacy { handle, ... } ctor branch from DBSQLOperation and
DBSQLSession:
- Facades accept only { backend, context }.
- DBSQLSession no longer imports ThriftSessionBackend at all.
- DBSQLOperation imports ThriftOperationBackend solely for the F1 typed
downcast (zero-loss Thrift fast path); this is a deliberate, scoped
coupling tied to the back-compat decision.
- tests/unit/.stubs/createSessionForTest.ts and createOperationForTest.ts
(new) wrap the legacy shape; all 48 + 54 test sites mechanically migrated.
F15 — ThriftOperationBackend.waitUntilReady uses imported WaitUntilReadyOptions
type instead of an anonymous inline shape.
F16 — useSEA flag moved out of public ConnectionOptions:
- Removed useSEA?: boolean from the exported lib/contracts/IDBSQLClient.ts
ConnectionOptions; no longer ships in the public .d.ts.
- lib/contracts/InternalConnectionOptions.ts (new) declares the flag as a
non-exported internal extension; DBSQLClient.connect() reads via a typed
cast. Mirrors Python's kwargs.get('use_sea', False) pattern at
databricks-sql-python/src/databricks/sql/session.py:111.
F17 — Missing return; after case 'timeout' in forwardConnectionEvent so a
future fifth case doesn't silently fall through. The trailing return; in
the last case triggers no-useless-return — quieted with a localized
eslint-disable-next-line + intent comment.
F5 — deferred per owner instruction (test-only as any cast tightening).
Verification:
- yarn lint clean (3 pre-existing warnings in tests/e2e/protocol_versions.test.ts).
- yarn build clean.
- tsc --noEmit -p tsconfig.json clean (apart from pre-existing
examples/tokenFederation/* import errors that exist on main).
- Runtime smoke test of SeaBackend stub + Thrift-wire synthesis round-trip
passes 5/5 assertions.
Co-authored-by: Isaac
Signed-off-by: Madhavendra Rathore <madhavendra.rathore@databricks.com>
* sea-abstraction: address PR #378 review-comment fixes (H1 / M1-M4 / L1-L10)
Addresses 15 review findings from the code-review-squad pass on PR #378.
L11 (backend kind field on the three interfaces) is deliberately deferred
to avoid a cross-stack cascade ripple while the downstream PRs are still
in flight.
H1 — fetchChunk lost mid-flight failIfClosed regression.
Add optional `isClosed?: () => boolean` to IOperationBackend.fetchChunk's
options bag. ThriftOperationBackend.fetchChunk probes it after the
setTimeout(0) macrotask yield and returns [] when set; the facade's
post-fetch failIfClosed then raises the user-visible OperationStateError.
Restores the guard that the refactor split across the facade/backend
boundary so a cancel/close arriving during the yield window no longer
runs the data RPC to completion needlessly.
M1 — neutralize WaitUntilReadyOptions callback shape.
Introduce IOperationBackendWaitOptions { callback?: (status:
OperationStatus) => unknown } on the backend interface. Facade keeps
the public Thrift-typed OperationStatusCallback and adapts at the
boundary by wrapping the user's callback with synthesizeThriftStatus.
ThriftOperationBackend.waitUntilReady consumes the neutral options and
passes adaptOperationStatus(response) to the callback.
M2 — synthesizeOkStatus maps OperationState to TStatusCode.
Add synthesizeStatusFromOperation that returns ERROR_STATUS for
Failed/Cancelled/Closed (carrying errorMessage + sqlState) and
SUCCESS_STATUS otherwise. Wire it into synthesizeThriftStatus so
legacy Status.assert(resp.status) sees the right code on non-Thrift
backends.
M3 — TelemetryEvent + DriverConfiguration carry a backend tag.
Add optional backend?: 'thrift' | 'sea' | 'kernel' on both interfaces
so dashboards can slice latency/error rate by backend without a
metrics-schema migration once non-Thrift emission goes live.
M4 — test coverage for the synthesize helpers + useSEA failure path.
New tests/unit/thrift-backend/wireSynthesis.test.ts covering all
OperationState/ResultFormat mappings, ERROR_STATUS carries
errorMessage/sqlState, hasResultSet round-trip, schema/arrowSchema/
lz4Compressed/isStagingOperation preservation, and the L3 throw on
unknown ResultFormat. New test in DBSQLClient.test.ts asserts that a
useSEA:true connect failure leaves this.backend === undefined and the
next openSession() surfaces "not connected" rather than the
SeaBackend's "not implemented" error.
L1 — forwardConnectionEvent normalizes payload to Error.
Replace `payload as Error` with `payload instanceof Error ? payload
: new Error(String(payload))` so a backend that emits a non-Error
through the cross-backend onConnectionEvent doesn't crash the
logger.log call.
L2 — DBSQLClient.connect publishes this.backend only on success.
Construct the backend locally, await connect() in a try/catch, run a
best-effort backend.close() (per IBackend.close()'s
safe-on-partial-init contract) and rethrow on failure. Only assign
this.backend after a clean connect so a failed connect surfaces
"DBSQLClient: not connected" on the next openSession.
L3 — resultFormatToThrift throws on unknown ResultFormat.
Replace the silent default fallback to COLUMN_BASED_SET with a
HiveDriverError. Prevents a future ResultFormat enum extension from
silently routing results through JsonResultHandler and surfacing
garbled rows.
L4 — DBSQLOperation.getMetadata carries @deprecated.
Adds the canonical TypeScript JSDoc tag so IDEs (strikethrough), tsc,
ESLint plugins, and agentic codegen pick up the soft deprecation in
favour of getResultMetadata.
L5 — numberToInt64 re-export carries @deprecated.
Re-export through a named const with a JSDoc block (rather than a
bare `export { ... } from`) so the @deprecated tag attaches to the
symbol consumers see in their IDE / .d.ts.
L6 — DBSQLSession.runBackend helper.
Collapse 11 duplicated `failIfClosed → backend.X → failIfClosed`
brackets into a single private runBackend<T>(fn) so the
open-flag-before-and-after contract has a name and can't be forgotten
in a new delegation method.
L7 — restore three why-comments deleted from DBSQLSession.
Staging-detection invariant in executeStatement, AWS-vs-Azure 404
difference on staging-remove, and the Content-Length-required note on
staging-upload. Verbatim from main; these document non-obvious
intentional behaviour the refactor inadvertently dropped.
L8 — hasResultSet becomes a method on IOperationBackend.
The value is state-dependent (the Thrift impl mutates the underlying
operation handle inside processOperationStatusResponse), so the
property+readonly+disclaimer-JSDoc pattern was misleading. Method
form makes the live-read semantics obvious to a fresh implementer.
3 facade call sites updated.
L9 — wireSynthesis moves under thrift-backend.
The file imports Thrift IDL types and produces Thrift-typed values;
it belongs next to ThriftOperationBackend, not in the neutral
lib/utils/ tree where it would creep into the dependency cone of
future backend-neutral helpers. Same reasoning that placed
numberToInt64 and getDirectResultsOptions under thrift-backend/.
L10 — interface-level downcast policy.
Add a JSDoc paragraph on IOperationBackend grandfathering the two
existing `instanceof ThriftOperationBackend` downcasts in
DBSQLOperation.status/getMetadata and prohibiting new ones. Future
zero-loss back-compat needs should extend the interface (or add an
optional method) rather than spawn a per-backend branch matrix.
Gates: yarn build (exit 0), yarn lint (0 errors, 3 pre-existing
warnings in tests/e2e/protocol_versions.test.ts), yarn test on touched
files (163 passing, +12 net new tests from M4 work; 2 failures pre-
existing on PR head unchanged: getSchema-directResults and the
LZ4-cloud-fetch flag — both flagged in the team-lead playbook as
known prior regressions).
Cascade implications for downstream PRs (#380#377#379#382#381#384#383): L8 converts hasResultSet from a property to a method,
M1 swaps WaitUntilReadyOptions for IOperationBackendWaitOptions on
the backend interface. Both are mechanical renames at downstream
backend impls when they rebase.
Co-authored-by: Isaac
Signed-off-by: Madhavendra Rathore <madhavendra.rathore@databricks.com>
* Fix SEA abstraction merge fallout
Restore Thrift compatibility paths needed by existing schema and result-handler tests after merging main telemetry changes.
Signed-off-by: Madhavendra Rathore <madhavendra.rathore@databricks.com>
* Restore Thrift result-handler compatibility hooks
Keep existing e2e-only inspection hooks available through the facade while the new backend abstraction owns result handling.
Signed-off-by: Madhavendra Rathore <madhavendra.rathore@databricks.com>
---------
Signed-off-by: Madhavendra Rathore <madhavendra.rathore@databricks.com>
@msrathore-db
msrathore-dbforce-pushed the msrathore/sea-execution branch from 6be8799 to 611f68cCompareMay 30, 2026 23:59
SeaSessionBackend wraps the napi Connection handle. executeStatement
passes through to napi.executeStatement and returns an
IOperationBackend (SeaOperationBackend in sea-results feature).
Session config + initialCatalog/initialSchema flow to napi
openSession. M0 stops at executeStatement; metadata methods +
per-stmt overrides defer to M1.
No new dependencies. Reuses existing ConnectionOptions / Session
config shapes.
Co-authored-by: Isaac
Signed-off-by: Madhavendra Rathore <madhavendra.rathore@databricks.com>
Two assertions in tests/unit/sea/execution.test.ts were specific to
the pre-merge SeaBackend / SeaOperationBackend stubs:
1. connect() missing-token rejection now flows through
SeaAuth.buildSeaConnectionOptions which throws AuthenticationError
(still a HiveDriverError subclass) with message "non-empty PAT".
Updated the regex match accordingly.
2. fetchChunk() is no longer a stub — the merged
SeaOperationBackend uses the sea-results pipeline
(SeaResultsProvider + ArrowResultConverter + ResultSlicer). The
"throws M1-deferred error owned by sea-results" test is now
incorrect by design; removed it with a pointer comment to the
real coverage in SeaOperationBackend.test.ts and
results-e2e.test.ts.
891/891 unit tests passing post-merge.
Signed-off-by: Madhavendra Rathore <madhavendra.rathore@databricks.com>
Rebased onto the fixed sea-auth (#379 review fixes). Updates the unit-test
fakes to the merged-kernel Connection/Statement surface so the spec
type-checks under ts-node:
- FakeNativeStatement: add statementId + the status accessors
(numModifiedRows/displayMessage/diagnosticInfo/errorDetailsJson) and make
schema() synchronous.
- FakeNativeConnection: add the sessionId getter; make executeStatement's
options param optional so it stays assignable to the binding's
executeStatement(sql) while still recording forwarded options.
- makeBinding: cast Connection/Statement through the binding's member types
(typeof is illegal on the loader's type aliases).
- e2e: cast useSEA as ConnectionOptions & InternalConnectionOptions (the
e2e test now lives under the wired tests/e2e/sea/ dir).
Note: the SeaOperationBackend status()/getResultMetadata() neutral-type
conformance and the per-statement-options -> session-level migration remain
pre-existing follow-ups for sea-results (tracked on the stack tip).
Co-authored-by: Isaac
@msrathore-db
msrathore-dbforce-pushed the msrathore/sea-execution branch from 611f68c to df98b15CompareMay 31, 2026 00:23
@github-actions

Copy link
Copy Markdown

Thanks for your contribution! To satisfy the DCO policy in our contributing guide every commit message must include a sign-off message. One or more of your commits is missing this message. You can reword previous commit messages with an interactive rebase (git rebase -i main).

@gopalldb

Copy link
Copy Markdown
Collaborator

🔴 P0 (Critical) — verified at source, must fix

  1. SeaOperationBackend.status() returns a Thrift-shaped object, not the neutral OperationStatus the contract requires — silently reports UNKNOWN for finished SEA statements.
    lib/sea/SeaOperationBackend.ts:176-180 (on origin/msrathore/sea-execution)

I confirmed the actual return:
public async status(_progress: boolean): Promise {
return { status: {...}, operationState: TOperationState.FINISHED_STATE } as TGetOperationStatusResp;
}
The contract requires Promise with a string .state field. The facade DBSQLOperation.status() feeds this to synthesizeThriftStatus, which reads status.state — but this object only has
.operationState. So status.state is undefined → operationStateToThrift(undefined) → default → UKNOWN_STATE. Every operation.status() on the SEA path reports UNKNOWN for a statement the kernel actually
finished.

The as TGetOperationStatusResp cast defeats tsc (which I separately confirmed passes clean on this stack) — so this is a silent runtime bug with no compiler safety net.
→ Fix: return { state: OperationState.Succeeded } (neutral DTO) and change the declared return type to Promise so the compiler can enforce it.

  1. getResultMetadata() declared with the wrong type — primes the Arrow→column misroute activated in [SEA-NodeJS] (6/8) CloudFetch + Inline Arrow result fetching #381.
    lib/sea/SeaOperationBackend.ts:183-185

In #382 this method only throws ("lands in sea-results"), so zero runtime impact today — but it's declared Promise instead of the contract's Promise. That wrong
signature is exactly what let #381 fill it in returning resultFormat: TSparkRowSetType.ARROW_BASED_SET (a number), which resultFormatToThrift (switching on the string enum) silently maps to COLUMN_BASED_SET.
Fixing the declared type here would force #381 to build the correct neutral DTO and let tsc catch the mismatch.
→ Fix: declare Promise now, in the file that introduces it.

🟠 P1 (Important)

  1. hasResultSet hard-coded true — SeaOperationBackend.ts:~456. The facade gates fetch/schema/hasMoreRows on this; for DDL/DML (SET/CREATE/INSERT) it'll drive fetch/schema paths instead of cleanly reporting
    "no result set." Masked today by stubbed fetch; the contract says implementations must refresh this from terminal status. → document the M0 result-bearing-only limitation or reject non-result statements.
  2. rethrowKernelError never-typing + ! is load-bearing across 3 files — SeaBackend.ts, SeaSessionBackend.ts, SeaOperationBackend.ts. Correct today (it always throws), but the non-null assertions defeat the
    compiler if anyone ever makes a branch not throw. → add an invariant comment or restructure to return-in-try.

🟡 P2 (Minor)

  • waitUntilReady() never throws on cancel/close — diverges from the contract (must throw OperationStateError on terminal non-success so the facade mirrors state). Low impact in M0.
  • E2E doesn't exercise the read path — execution-e2e.test.ts asserts only operation.id is a string and close() doesn't throw; never calls status()/getMetadata()/reads a row. This is why the P0 lands green. A
    single await operation.status() asserting not-UNKNOWN would have caught it.
  • Per-statement executeOptions forwarding may be a silent no-op against the merged binding — SeaSessionBackend.ts forwards executeOptions as a 2nd arg, but the merged kernel moved
    catalog/schema/sessionConfig to session-level openSession and executeStatement(sql) takes no options. Unit tests assert the driver sends it, not that the kernel applies it. Reconciled by [SEA-NodeJS] (6/8) CloudFetch + Inline Arrow result fetching #381 (which removes
    the forwarding) — a transient stack artifact, but if [SEA-NodeJS] (5/8) executeStatement + openSession (sessionConfig, initialCatalog/Schema) #382 shipped alone, initialCatalog/initialSchema/sessionConfig would silently not reach the kernel.

@msrathore-db

Copy link
Copy Markdown
ContributorAuthor

Superseded — this layer is folded into the consolidated SEA foundation, now split into #409#410#411 (stacked on main).

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants

@msrathore-db@gopalldb