I use QuestDb with Influx Line Protocol. When I send new metric QuestDB automatically creates a table and for all my numbers it uses DOUBLE type. Also it can create SYMBOL for Tags and String for other string fields in the message and LONG for numbers ending with 'i'.
So I can send
sensors,location=ny temperature=22,flag=6i,name="out" 1465839830100400200
and it will create
location SYMBOL
temperature DOUBLE
flag LONG
name STRING
How can I control what type is created if I want to have FLOAT instead of DOUBLE or INT, SHORT or BYTE instead of LONG?