Test for string concatenation variable inference

This commit is contained in:
Simon Binder 2020-02-23 19:23:50 +01:00
parent 23585ad920
commit 87d1f2941b
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
1 changed files with 1 additions and 0 deletions

View File

@ -36,6 +36,7 @@ Map<String, ResolveResult> _types = {
'SELECT (3 / 4) = ?': const ResolveResult(ResolvedType(type: BasicType.int)),
'SELECT CURRENT_TIME = ?':
const ResolveResult(ResolvedType(type: BasicType.text)),
"SELECT ? || 'foo'": const ResolveResult(ResolvedType(type: BasicType.text)),
};
void main() {