postgres ブラックリスト テーブルがあります。このテーブルをロードし、WSO2 DAS のイベント テーブルを使用して結合を実行したいと考えています。
しかし、クエリでブラックリストの食べることはできません。
これは私のサンプルコードです:
@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;
これはエラーです:
「ID「Trazablack」のストリーム/テーブル定義は、実行計画「ExecutionPlan」で定義されていません」
それが可能だ?