如果刪除了一路Sink的同時,將Sink或Source的TEMPORARY TABLE DDL也進行了修改或刪除,該修改屬於未知相容。如果只是刪除了一路Sink,但是TEMPORARY TABLE DDL未更新,該修改屬於完全相容。
CREATE TEMPORARY TABLE MyTable (
a int,
b bigint,
c bigint,
ts timestamp(3),
proctime as proctime(),
watermark for ts AS ts - interval '1' second
) WITH ('connector' = 'datagen');
CREATE TEMPORARY TABLE MyTable2 (
a int,
b bigint,
c bigint,
ts timestamp(3),
proctime as proctime(),
watermark for ts AS ts - interval '1' second
) WITH ('connector' = 'datagen');
CREATE TEMPORARY TABLE MySink (a int, b bigint) WITH ('connector'='print');
CREATE TEMPORARY TABLE MySink2 (a int, b bigint) WITH ('connector'='print');
BEGIN STATEMENT SET;
INSERT INTO MySink SELECT a, sum(b) FROM MyTable GROUP BY a;
INSERT INTO MySink2 SELECT a, b FROM MyTable2 where a > 10;
END;
CREATE TEMPORARY TABLE MyTable (
a int,
b bigint,
c bigint,
d bigint,
ts timestamp(3),
proctime as proctime(),
watermark for ts AS ts - interval '1' second
) WITH ('connector' = 'datagen');
CREATE TEMPORARY TABLE MySink (a int, b bigint) WITH ('connector'='print');
INSERT INTO MySink SELECT a, sum(b) FROM MyTable GROUP BY a;
CREATE TEMPORARY TABLE MyTable (
a int,
b bigint,
c bigint,
ts timestamp(3),
proctime as proctime(),
watermark for ts AS ts - interval '1' second
) WITH ('connector' = 'datagen');
CREATE TEMPORARY TABLE MyTable2 (
a int,
b bigint,
c bigint,
ts timestamp(3),
proctime as proctime(),
watermark for ts AS ts - interval '1' second
) WITH ('connector' = 'datagen');
CREATE TEMPORARY TABLE MySink (a int, b bigint) WITH ('connector'='print');
CREATE TEMPORARY TABLE MySink2 (a int, b bigint) WITH ('connector'='print');
INSERT INTO MySink SELECT a, sum(b) FROM MyTable GROUP BY a;