File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -622,7 +622,7 @@ export class GelDatabase<
622622 }
623623}
624624
625- export type GelWithReplicas < Q > = Q & { $primary : Q , $replicas : Q [ ] } ;
625+ export type GelWithReplicas < Q > = Q & { $primary : Q ; $replicas : Q [ ] } ;
626626
627627export const withReplicas = <
628628 HKT extends GelQueryResultHKT ,
Original file line number Diff line number Diff line change @@ -488,7 +488,7 @@ export class MySqlDatabase<
488488 }
489489}
490490
491- export type MySQLWithReplicas < Q > = Q & { $primary : Q , $replicas : Q [ ] } ;
491+ export type MySQLWithReplicas < Q > = Q & { $primary : Q ; $replicas : Q [ ] } ;
492492
493493export const withReplicas = <
494494 HKT extends MySqlQueryResultHKT ,
Original file line number Diff line number Diff line change @@ -641,7 +641,7 @@ export class PgDatabase<
641641 }
642642}
643643
644- export type PgWithReplicas < Q > = Q & { $primary : Q , $replicas : Q [ ] } ;
644+ export type PgWithReplicas < Q > = Q & { $primary : Q ; $replicas : Q [ ] } ;
645645
646646export const withReplicas = <
647647 HKT extends PgQueryResultHKT ,
Original file line number Diff line number Diff line change @@ -490,7 +490,7 @@ export class SingleStoreDatabase<
490490 }
491491}
492492
493- export type SingleStoreWithReplicas < Q > = Q & { $primary : Q , $replicas : Q [ ] } ;
493+ export type SingleStoreWithReplicas < Q > = Q & { $primary : Q ; $replicas : Q [ ] } ;
494494
495495export const withReplicas = <
496496 Q extends SingleStoreDriverDatabase ,
Original file line number Diff line number Diff line change @@ -594,7 +594,7 @@ export class BaseSQLiteDatabase<
594594 }
595595}
596596
597- export type SQLiteWithReplicas < Q > = Q & { $primary : Q , $replicas : Q [ ] } ;
597+ export type SQLiteWithReplicas < Q > = Q & { $primary : Q ; $replicas : Q [ ] } ;
598598
599599export const withReplicas = <
600600 TResultKind extends 'sync' | 'async' ,
You can’t perform that action at this time.
0 commit comments