File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
packages/cubejs-server-core/src/core Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ import { disposedProxy } from '@cubejs-backend/shared';
2727import type { SchemaFileRepository } from '@cubejs-backend/shared' ;
2828import { NormalizedQuery , MemberExpression } from '@cubejs-backend/api-gateway' ;
2929import { DbTypeAsyncFn , DialectClassFn , LoggerFn } from './types' ;
30+ import { DriverCapabilities } from '@cubejs-backend/base-driver' ;
3031
3132type Context = any ;
3233
@@ -78,6 +79,7 @@ export interface SqlResult {
7879export interface DataSourceInfo {
7980 dataSource : string ;
8081 dbType : string ;
82+ driverCapabilities ?: DriverCapabilities ;
8183}
8284
8385export class CompilerApi {
@@ -868,7 +870,8 @@ export class CompilerApi {
868870
869871 public async dataSources (
870872 orchestratorApi : any ,
871- query ?: NormalizedQuery
873+ query ?: NormalizedQuery ,
874+ _dataSourceFromEnvs ?: string [ ]
872875 ) : Promise < { dataSources : DataSourceInfo [ ] } > {
873876 const cubeNameToDataSource = await this . cubeNameToDataSource ( query || { requestId : `datasources-${ uuidv4 ( ) } ` } ) ;
874877
You can’t perform that action at this time.
0 commit comments