@databricks/sql
Version:
Driver for connection to Databricks SQL via Thrift API.
9 lines (8 loc) • 371 B
TypeScript
import BaseCommand from './BaseCommand';
import { TGetTablesReq, TGetTablesResp } from '../../../thrift/TCLIService_types';
import IThriftClient from '../../contracts/IThriftClient';
type Client = Pick<IThriftClient, 'GetTables'>;
export default class GetTablesCommand extends BaseCommand<Client> {
execute(data: TGetTablesReq): Promise<TGetTablesResp>;
}
export {};