( schemaMismatchPolicy: ExpoSQLiteCoreSchemaMismatchPolicy, schemaVersion: number | undefined, )
| 56 | } |
| 57 | |
| 58 | function createAdapterCacheKey( |
| 59 | schemaMismatchPolicy: ExpoSQLiteCoreSchemaMismatchPolicy, |
| 60 | schemaVersion: number | undefined, |
| 61 | ): string { |
| 62 | const schemaVersionKey = |
| 63 | schemaVersion === undefined ? `schema:default` : `schema:${schemaVersion}` |
| 64 | return `${schemaMismatchPolicy}|${schemaVersionKey}` |
| 65 | } |
| 66 | |
| 67 | function createInternalSQLiteDriver( |
| 68 | options: ExpoSQLitePersistenceOptions, |
no outgoing calls
no test coverage detected