Don't generate double-quoted string literals

This commit is contained in:
Simon Binder 2020-02-25 14:15:31 +01:00
parent 341d03c8f2
commit aa98774eae
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
6 changed files with 16 additions and 10 deletions

View File

@ -1,3 +1,7 @@
## 2.4.1
- Don't generate double quoted string literals in date time functions
## 2.4.0
- Support aggregate expressions and `group by` in the Dart api

View File

@ -99,9 +99,9 @@ class _StrftimeSingleFieldExpression extends Expression<int, IntType> {
@override
void writeInto(GenerationContext context) {
context.buffer.write('CAST(strftime("$format", ');
context.buffer.write("CAST(strftime('$format', ");
date.writeInto(context);
context.buffer.write(', "unixepoch") AS INTEGER)');
context.buffer.write(", 'unixepoch') AS INTEGER)");
}
@override

View File

@ -1,6 +1,6 @@
name: moor
description: Moor is a safe and reactive persistence library for Dart applications
version: 2.4.0
version: 2.4.1
repository: https://github.com/simolus3/moor
homepage: https://moor.simonbinder.eu/
issue_tracker: https://github.com/simolus3/moor/issues

View File

@ -19,6 +19,6 @@ void main() {
final ctx = GenerationContext(null, null);
nonNull.isSmallerThan(currentDateAndTime).writeInto(ctx);
expect(ctx.sql, 'name < strftime(\'%s\', CURRENT_TIMESTAMP)');
expect(ctx.sql, "name < strftime('%s', CURRENT_TIMESTAMP)");
});
}

View File

@ -43,4 +43,6 @@ void main() {
await db.close();
await isolate.shutdownAll();
});
tearDown(_file.delete);
}

View File

@ -14,12 +14,12 @@ void main() {
group('extracting information via top-level method', () {
final expectedResults = <_Extractor, String>{
year: 'CAST(strftime("%Y", val, "unixepoch") AS INTEGER)',
month: 'CAST(strftime("%m", val, "unixepoch") AS INTEGER)',
day: 'CAST(strftime("%d", val, "unixepoch") AS INTEGER)',
hour: 'CAST(strftime("%H", val, "unixepoch") AS INTEGER)',
minute: 'CAST(strftime("%M", val, "unixepoch") AS INTEGER)',
second: 'CAST(strftime("%S", val, "unixepoch") AS INTEGER)',
year: "CAST(strftime('%Y', val, 'unixepoch') AS INTEGER)",
month: "CAST(strftime('%m', val, 'unixepoch') AS INTEGER)",
day: "CAST(strftime('%d', val, 'unixepoch') AS INTEGER)",
hour: "CAST(strftime('%H', val, 'unixepoch') AS INTEGER)",
minute: "CAST(strftime('%M', val, 'unixepoch') AS INTEGER)",
second: "CAST(strftime('%S', val, 'unixepoch') AS INTEGER)",
};
expectedResults.forEach((key, value) {