You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Coverage reporters, especially the HTML coverage reporter, produce a single output file.
That approach doesn't scale to schemas with thousands of packages and causes may problems with memory consumption.
When running expectations on cursor and collection data, the comparison is more complex than needed. For a cursor with scalar columns a plain check for non-intersecting elements is sufficient. This will significantly improve the performance of data comparison.
The diff data is returned diffs in XML while it could be returned as JSON.
The reporter output is now capped at returning 4k chars per one line which affects readability of comparison.
Most commonly affected are the cursor, object, collection as well as clob and varchar comparison.
Proposed direction
Rework the reporter API so consumers can split output across multiple files.
Optimize cursor comparison for simple cursor shapes.
switch cursor diff output to JSON.
remove the 4K limit for the expectation result output size.
Breaking change
Could be breaking change for reporter API consumers unless the new output is provided in another format.
The change of diff format change (XML → JSON) will affect anything parsing the current diff output.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Target release or timeframe
No response
Scope and goals
Problems
Coverage reporters, especially the HTML coverage reporter, produce a single output file.
That approach doesn't scale to schemas with thousands of packages and causes may problems with memory consumption.
When running expectations on cursor and collection data, the comparison is more complex than needed. For a cursor with scalar columns a plain check for non-intersecting elements is sufficient. This will significantly improve the performance of data comparison.
The diff data is returned diffs in XML while it could be returned as JSON.
The reporter output is now capped at returning 4k chars per one line which affects readability of comparison.
Most commonly affected are the cursor, object, collection as well as clob and varchar comparison.
Proposed direction
Breaking change
Could be breaking change for reporter API consumers unless the new output is provided in another format.
The change of diff format change (XML → JSON) will affect anything parsing the current diff output.
Tracking
Open questions for the community
No response
Beta Was this translation helpful? Give feedback.
All reactions