With the following SQL, the SQLite driver returns `number:int64, string:int64` schema not `number:int64, string:string` schema: ```sql CREATE TABLE data (number int, string text); SELECT * FROM data; ```