We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d58aa4f commit dd904fcCopy full SHA for dd904fc
test/encoding_test.dart
@@ -189,6 +189,10 @@ void main() {
189
Duration(days: 1, minutes: 15), PostgreSQLDataType.interval);
190
await expectInverse(
191
-Duration(days: 1, seconds: 5), PostgreSQLDataType.interval);
192
+ await expectInverse(Duration(days: 365 * 100000, microseconds: 1),
193
+ PostgreSQLDataType.interval);
194
+ await expectInverse(-Duration(days: 365 * 100000, microseconds: 1),
195
196
try {
197
await conn.query('INSERT INTO t (v) VALUES (@v:interval)',
198
substitutionValues: {'v': 'not-interval'});
0 commit comments