|
45 | 45 | depends_on_stream: test30_stream
|
46 | 46 | wait: 1
|
47 | 47 | query: |
|
48 |
| - select count() from test30_stream emit changelog periodic 1s; |
| 48 | + select count(), _tp_delta from test30_stream emit changelog periodic 1s; |
49 | 49 |
|
50 | 50 | - client: python
|
51 | 51 | query_type: table
|
|
96 | 96 | depends_on_stream: test30_vk_stream
|
97 | 97 | wait: 1
|
98 | 98 | query: |
|
99 |
| - select k, count() from test30_vk_stream group by k emit changelog periodic 1s; |
| 99 | + select k, count(), _tp_delta from test30_vk_stream group by k emit changelog periodic 1s; |
100 | 100 |
|
101 | 101 | - client: python
|
102 | 102 | query_type: table
|
@@ -148,7 +148,7 @@ tests:
|
148 | 148 | depends_on_stream: test30_changelog_kv_stream
|
149 | 149 | wait: 1
|
150 | 150 | query: |
|
151 |
| - select k, count() from test30_changelog_kv_stream group by k emit changelog periodic 1s; |
| 151 | + select k, count(), _tp_delta from test30_changelog_kv_stream group by k emit changelog periodic 1s; |
152 | 152 |
|
153 | 153 | - client: python
|
154 | 154 | query_type: table
|
@@ -200,7 +200,7 @@ tests:
|
200 | 200 | depends_on_stream: test30_stream
|
201 | 201 | wait: 1
|
202 | 202 | query: |
|
203 |
| - select k, count() from changelog(test30_stream, i) group by k emit changelog periodic 1s; |
| 203 | + select k, count(), _tp_delta from changelog(test30_stream, i) group by k emit changelog periodic 1s; |
204 | 204 |
|
205 | 205 | - client: python
|
206 | 206 | query_type: table
|
@@ -259,14 +259,14 @@ tests:
|
259 | 259 | query_id: 3001
|
260 | 260 | depends_on_stream: test30_stream
|
261 | 261 | query: |
|
262 |
| - select count() from (select k, count() from changelog(test30_stream, i) group by k emit periodic 1s) emit changelog periodic 1s; |
| 262 | + select count(), _tp_delta from (select k, count() from changelog(test30_stream, i) group by k emit periodic 1s) emit changelog periodic 1s; |
263 | 263 |
|
264 | 264 | - client: python
|
265 | 265 | query_type: stream
|
266 | 266 | query_id: 3002
|
267 | 267 | depends_on_stream: test30_stream
|
268 | 268 | query: |
|
269 |
| - select count() from (select k, count() from changelog(test30_stream, i) group by k emit changelog periodic 1s) emit changelog periodic 1s; |
| 269 | + select count(), _tp_delta from (select k, count() from changelog(test30_stream, i) group by k emit changelog periodic 1s) emit changelog periodic 1s; |
270 | 270 |
|
271 | 271 | - client: python
|
272 | 272 | query_type: table
|
@@ -339,13 +339,13 @@ tests:
|
339 | 339 | depends_on_stream: test30_right_vk_stream
|
340 | 340 | wait: 1
|
341 | 341 | query: |
|
342 |
| - select i, count(), max(test30_right_vk_stream.k) from test30_left_stream join test30_right_vk_stream using(i) group by i emit changelog periodic 1s; |
| 342 | + select i, count(), max(test30_right_vk_stream.k), _tp_delta from test30_left_stream join test30_right_vk_stream using(i) group by i emit changelog periodic 1s; |
343 | 343 |
|
344 | 344 | - client: python
|
345 | 345 | query_type: stream
|
346 | 346 | query_id: 3001
|
347 | 347 | query: |
|
348 |
| - select test30_right_vk_stream.k, count(), max(i) from test30_left_stream join test30_right_vk_stream using(i) group by test30_right_vk_stream.k emit changelog periodic 1s; |
| 348 | + select test30_right_vk_stream.k, count(), max(i), _tp_delta from test30_left_stream join test30_right_vk_stream using(i) group by test30_right_vk_stream.k emit changelog periodic 1s; |
349 | 349 |
|
350 | 350 | - client: python
|
351 | 351 | query_type: table
|
@@ -428,7 +428,7 @@ tests:
|
428 | 428 | depends_on_stream: test30_right_vk_stream
|
429 | 429 | wait: 1
|
430 | 430 | query: |
|
431 |
| - subscribe to select i, count(), max(test30_right_vk_stream.k) from test30_left_stream join test30_right_vk_stream using(i) group by i emit changelog periodic 1s settings checkpoint_interval=1; |
| 431 | + subscribe to select i, count(), max(test30_right_vk_stream.k), _tp_delta from test30_left_stream join test30_right_vk_stream using(i) group by i emit changelog periodic 1s settings checkpoint_interval=1; |
432 | 432 |
|
433 | 433 | - client: python
|
434 | 434 | query_type: table
|
|
0 commit comments