Skip to content

Commit 19847b6

Browse files
authored
Fix typo that refers to an non-existent internal table (#3479)
This was slightly misleading as the implementation suggests that 'sqlite_' is the prefix for these tables. This was brought up here: zulip/zulip-flutter#1248 (comment) Signed-off-by: Zixuan James Li <[email protected]>
1 parent 18cede1 commit 19847b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drift_dev/lib/src/services/schema/verifier_common.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import 'package:sqlite3/common.dart';
77
import 'find_differences.dart';
88

99
/// Attempts to recognize whether [name] is likely the name of an internal
10-
/// sqlite3 table (like `sqlite3_sequence`) that we should not consider when
10+
/// sqlite3 table (like `sqlite_sequence`) that we should not consider when
1111
/// comparing schemas.
1212
bool isInternalElement(String name, List<String> virtualTables) {
1313
// Skip sqlite-internal tables, https://www.sqlite.org/fileformat2.html#intschema

0 commit comments

Comments
 (0)