@malloydata/malloy 0.0.111-dev231204215446 → 0.0.111
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/malloy.d.ts +1 -3
- package/package.json +1 -1
package/dist/malloy.d.ts
CHANGED
|
@@ -998,9 +998,7 @@ export declare class QueryMaterializer extends FluentState<PreparedQuery> {
|
|
|
998
998
|
* @return The query results from running this loaded query.
|
|
999
999
|
*/
|
|
1000
1000
|
run(options?: RunSQLOptions): Promise<Result>;
|
|
1001
|
-
runStream(options?:
|
|
1002
|
-
rowLimit?: number;
|
|
1003
|
-
}): AsyncIterableIterator<DataRecord>;
|
|
1001
|
+
runStream(options?: RunSQLOptions): AsyncIterableIterator<DataRecord>;
|
|
1004
1002
|
/**
|
|
1005
1003
|
* Load the prepared result of this loaded query.
|
|
1006
1004
|
*
|