Skip to content

Commit 9f9b180

Browse files
authored
Merge pull request #31319 from def-/pr-disable-rehydration-source-stats
upsert test: Disable another flaky source stats query
2 parents 47cd9df + 8abdb06 commit 9f9b180

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

test/upsert/rehydration/03-after-rehydration.td

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -92,15 +92,16 @@ SELECT
9292
$ kafka-ingest format=avro topic=upsert key-format=avro key-schema=${keyschema} schema=${schema}
9393
{"key": "fish"} {"f1": "MUCHMUCHMUCHLONGERVALUE", "f2": 9000}
9494

95-
> SELECT
96-
SUM(u.bytes_indexed) > ${state-bytes},
97-
SUM(u.records_indexed)
98-
FROM mz_tables t
99-
JOIN mz_internal.mz_source_statistics_raw u ON t.id = u.id
100-
WHERE t.name IN ('upsert_tbl')
101-
GROUP BY t.name
102-
ORDER BY t.name
103-
true 3
95+
# TODO: Reenable when https://github.com/MaterializeInc/database-issues/issues/8802 is fixed
96+
# > SELECT
97+
# SUM(u.bytes_indexed) > ${state-bytes},
98+
# SUM(u.records_indexed)
99+
# FROM mz_tables t
100+
# JOIN mz_internal.mz_source_statistics_raw u ON t.id = u.id
101+
# WHERE t.name IN ('upsert_tbl')
102+
# GROUP BY t.name
103+
# ORDER BY t.name
104+
# true 3
104105

105106

106107
# Ensure deletes work.

0 commit comments

Comments
 (0)