mirror of https://github.com/AMT-Cheif/drift.git
`dart format .`
This commit is contained in:
parent
78387a3610
commit
bf8da493bf
|
@ -83,8 +83,7 @@ class DriftAnalysisDriver {
|
|||
if (options.hasModule(SqlModule.rtree)) const RTreeExtension(),
|
||||
if (options.hasModule(SqlModule.spellfix1))
|
||||
const Spellfix1Extension(),
|
||||
if (options.hasModule(SqlModule.geopoly))
|
||||
const GeopolyExtension(),
|
||||
if (options.hasModule(SqlModule.geopoly)) const GeopolyExtension(),
|
||||
],
|
||||
version: options.sqliteVersion,
|
||||
),
|
||||
|
|
|
@ -25,7 +25,7 @@ Future<void> main() async {
|
|||
|
||||
output.writeAsStringSync(json.encode(tracker.timings));
|
||||
|
||||
// Make sure the process exits. Otherwise, unclosed resources from the
|
||||
// Make sure the process exits. Otherwise, unclosed resources from the
|
||||
// benchmarks will keep the process alive.
|
||||
exit(0);
|
||||
}
|
||||
|
|
|
@ -18,7 +18,7 @@ SELECT * FROM key_values WHERE value IN (SELECT value FROM key_values WHERE valu
|
|||
''';
|
||||
|
||||
final fs = <Future>[];
|
||||
|
||||
|
||||
for (var i = 0; i < _numQueries; i++) {
|
||||
fs.add(
|
||||
_db.customSelect(queryToBench, variables: [Variable(uuid.v4())]).get(),
|
||||
|
|
Loading…
Reference in New Issue