| Message: 60401 |
 |
BY: Gavin Kistner (phrogz) DATE: 2008-09-12 15:37 SUBJECT: RE: type_translation doesn't work for count() Note that this does not appear to be a bug in SQLite:
sqlite> SELECT name,typeof(name),count(name),typeof(count(name)) FROM foo;
name|typeof(name)|count(name)|typeof(count(name))
a|text|2|integer
| |