I configured Single node Presto cluster and able to create tables from the data in my custom s3 service. However when I try to query data like select * from test limit 10;
the result I am getting here is like this -
time | quality | o3
------+---------+------
NULL | NULL | NULL
NULL | NULL | NULL
NULL | NULL | NULL
NULL | NULL | NULL
NULL | NULL | NULL
NULL | NULL | NULL
NULL | NULL | NULL
NULL | NULL | NULL
NULL | NULL | NULL
NULL | NULL | NULL
My hive-metastore is also stable and working fine. But I an not able to understand why I am getting data as NULL. However, when I query data for SELECT COUNT(*) FROM test
, I get result like 25; rows. This means the table has data in it. How should I resolve this issue?
I am very new to presto. Need help!