File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -457,11 +457,12 @@ export class MySqlDialect {
457457 return sql `insert${ ignoreSql } into ${ table } ${ insertOrder } values ${ valuesSql } ${ onConflictSql } ` ;
458458 }
459459
460- sqlToQuery ( sql : SQL ) : QueryWithTypings {
460+ sqlToQuery ( sql : SQL , invokeSource ?: 'indexes' | undefined ) : QueryWithTypings {
461461 return sql . toQuery ( {
462462 escapeName : this . escapeName ,
463463 escapeParam : this . escapeParam ,
464464 escapeString : this . escapeString ,
465+ invokeSource,
465466 } ) ;
466467 }
467468
Original file line number Diff line number Diff line change @@ -426,11 +426,12 @@ export abstract class SQLiteDialect {
426426 return sql `${ withSql } insert into ${ table } ${ insertOrder } values ${ valuesSql } ${ onConflictSql } ${ returningSql } ` ;
427427 }
428428
429- sqlToQuery ( sql : SQL ) : QueryWithTypings {
429+ sqlToQuery ( sql : SQL , invokeSource ?: 'indexes' | undefined ) : QueryWithTypings {
430430 return sql . toQuery ( {
431431 escapeName : this . escapeName ,
432432 escapeParam : this . escapeParam ,
433433 escapeString : this . escapeString ,
434+ invokeSource,
434435 } ) ;
435436 }
436437
You can’t perform that action at this time.
0 commit comments