UNPKG

@databricks/sql

Version:

Driver for connection to Databricks SQL via Thrift API.

9 lines (8 loc) 401 B
import BaseCommand from './BaseCommand'; import { TGetPrimaryKeysReq, TGetPrimaryKeysResp } from '../../../thrift/TCLIService_types'; import IThriftClient from '../../contracts/IThriftClient'; type Client = Pick<IThriftClient, 'GetPrimaryKeys'>; export default class GetPrimaryKeysCommand extends BaseCommand<Client> { execute(data: TGetPrimaryKeysReq): Promise<TGetPrimaryKeysResp>; } export {};