@@ -139,12 +139,12 @@ export abstract class AwsClient extends EventEmitter implements SessionStateClie
139139 await this . setup ( ) ;
140140 const hostListProvider : HostListProvider = this . pluginService
141141 . getDialect ( )
142- . getHostListProvider ( this . properties , this . properties . get ( "host" ) , < HostListProviderService > ( < unknown > this . pluginService ) ) ;
142+ . getHostListProvider ( this . properties , this . properties . get ( "host" ) , this . fullServiceContainer ) ;
143143 this . pluginService . setHostListProvider ( hostListProvider ) ;
144144 await this . pluginService . refreshHostList ( ) ;
145145 const initialHostInfo = this . pluginService . getInitialConnectionHostInfo ( ) ;
146146 if ( initialHostInfo != null ) {
147- await this . pluginManager . initHostProvider ( initialHostInfo , this . properties , < HostListProviderService > ( < unknown > this . pluginService ) ) ;
147+ await this . pluginManager . initHostProvider ( initialHostInfo , this . properties , this . fullServiceContainer . getHostListProviderService ( ) ) ;
148148 await this . pluginService . refreshHostList ( ) ;
149149 }
150150 }
@@ -176,15 +176,15 @@ export abstract class AwsClient extends EventEmitter implements SessionStateClie
176176
177177 abstract setTransactionIsolation ( level : TransactionIsolationLevel ) : Promise < any | void > ;
178178
179- abstract getTransactionIsolation ( ) : TransactionIsolationLevel ;
179+ abstract getTransactionIsolation ( ) : TransactionIsolationLevel | undefined ;
180180
181181 abstract setSchema ( schema : any ) : Promise < any | void > ;
182182
183- abstract getSchema ( ) : string ;
183+ abstract getSchema ( ) : string | undefined ;
184184
185185 abstract setCatalog ( catalog : string ) : Promise < any | void > ;
186186
187- abstract getCatalog ( ) : string ;
187+ abstract getCatalog ( ) : string | undefined ;
188188
189189 abstract end ( ) : Promise < any > ;
190190
0 commit comments