Null pointer when run query on iceberg CTE

Hello we have a strange error when filter a join of some tables that are in iceberg format


select *,        FEC_INICIAL as C1 
from credito.application.dr_ca_operacion_hist_mes as h 
left join lake.general.business.dim_fechas as F  on h.id_fecha_dim = F.id_fecha 
left join lake.general.business.dr_ah_origen as ITBL on h.ID_AGENCIA = ITBL.ID_AGENCIA
where  ITBL.DESCRIP_ORIGEN = 'CCA'

b8a02438-4818-40e0-9f8f-c186c179f753.zip (30,5 KB)

Hello @dch , @balaji.ramaswamy can you check this error, I think that is a bug, also we have another bug, we have error when try create a view using odbc, with jdbc works well

@dacopan Which tool created these Iceberg tables?

hello we create using dremio, with CTA

create TABLE XXX as SELECT A,B,C FROM source.YYY