File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
packages/malloy-db-trino/src Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 21
21
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
22
*/
23
23
24
- export { TrinoConnection } from './trino_connection' ;
25
- export { PrestoConnection } from './trino_connection' ;
24
+ export type { BaseRunner } from './trino_connection' ;
25
+ export {
26
+ PrestoConnection ,
27
+ PrestoExplainParser ,
28
+ TrinoConnection ,
29
+ TrinoPrestoConnection ,
30
+ } from './trino_connection' ;
26
31
export { TrinoExecutor } from './trino_executor' ;
Original file line number Diff line number Diff line change @@ -618,7 +618,7 @@ export class TrinoConnection extends TrinoPrestoConnection {
618
618
* ARRAY_TYPE: ARRAY '(' TYPE ')'
619
619
* REC_TYPE: REC '(' "name" TYPE (, "name" TYPE)* ')'
620
620
*/
621
- class PrestoExplainParser extends TinyParser {
621
+ export class PrestoExplainParser extends TinyParser {
622
622
constructor (
623
623
readonly input : string ,
624
624
readonly dialect : Dialect
You can’t perform that action at this time.
0 commit comments