Skip to content

Commit 85bf84d

Browse files
committed
Minor fix in table name string
1 parent c81b469 commit 85bf84d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/storage/providers/SQLiteProvider.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ const provider: StorageProvider<NitroSQLiteConnection | undefined> = {
118118
}
119119

120120
// FIXME: Not working because of "-" apparently.
121-
// const tableName = `temp_multiMerge_${Str.guid()}`;
122-
const tableName = `temp_multiMerge_${Date.now()}_${Math.random().toString(36).slice(2, 8)}}`;
121+
// const tableName = `temp_multiGet_${Str.guid()}`;
122+
const tableName = `temp_multiGet_${Date.now()}_${Math.random().toString(36).slice(2, 8)}`;
123123

124124
return provider.store
125125
.executeAsync(`CREATE TEMP TABLE ${tableName} (record_key TEXT PRIMARY KEY);`)

0 commit comments

Comments
 (0)