I'm trying to import a table into QuestDB via the /imp
REST endpoint. The file contains a single row one with no column row:
a,10.5,True
I'm trying to import it with cURL:
curl -v -F data=@input.csv 'http://localhost:9000/imp?name=my_table'
but geting not enough lines [table=my_table]
error.
How do I import a single-line CSV into QuestDB?