I have a postgres blacklist table, I want to load this table and do a join using the event table of WSO2 DAS.
but it does not allow me to use the blacklist eat from in the query.
This is my code of sample:
@From(eventtable='rdbms', jdbc.url='jdbc:postgresql://localhost:5432/pruebabg', username='postgres', password='Easysoft16', driver.name='org.postgresql.Driver', table.name='Trazablack')
define table Trazablack (sensorValue double);
@From(eventtable='rdbms', jdbc.url='jdbc:postgresql://localhost:5432/pruebabg', username='postgres', password='Easysoft16', driver.name='org.postgresql.Driver', table.name='Trazawhite')
define table TrazaExtend (Trazawhite double);
from Trazablack
select *
insert into TrazaFiltrada;
This is the error:
"Stream/table definition with ID 'Trazablack' has not been defined in execution plan "ExecutionPlan""
it's possible?