( schema: RelationalSchemaConfig<TablesRelationalConfig> | undefined, )
| 31 | } |
| 32 | |
| 33 | createSession( |
| 34 | schema: RelationalSchemaConfig<TablesRelationalConfig> | undefined, |
| 35 | ): PgliteSession<Record<string, unknown>, TablesRelationalConfig> { |
| 36 | return new PgliteSession(this.client, this.dialect, schema, { |
| 37 | logger: this.options.logger, |
| 38 | cache: this.options.cache, |
| 39 | }); |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | export class PgliteDatabase< |