Read a routine body synchronously.
The decorators generate their DDL synchronously — ProcedureRegistry.getSQL() returns a string, not a promise — so that path needs this. It is Node-only: a browser has no synchronous file read, and Blob is async by design.
ProcedureRegistry.getSQL()
Blob
Read a routine body synchronously.
The decorators generate their DDL synchronously —
ProcedureRegistry.getSQL()returns a string, not a promise — so that path needs this. It is Node-only: a browser has no synchronous file read, andBlobis async by design.