'select from returns nothing on citus columnar storage

i've create a table named tbl1 with USING columnar in citus then inserted dump file successfuly :

SELECT pg_total_relation_size('tbl1')
+--------------------------+
| pg_total_relation_size   |
|--------------------------|
| 479675424768             |
+--------------------------+

but while using query to select existing data , result is nothing or null

select max(field1) from tbl1; 
+--------+
| max    |
|--------|
| <null> |
+--------+

i even created citus extention before do top steps , but im wondering how does it happend and does not returns anything,



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source