Uh oh!
There was an error while loading. Please reload this page.
') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })();
There was an error while loading. Please reload this page.
filter/field/function, so an array groupBy on the LEGACY shape silently drops both the filter and the measure #6864
Measured while running the census for #6825. Same predicate, different failure mode — filed separately so a narrowly-scoped ruling on #6825 cannot lose it. ⛔ Nothing was changed; this is a source read.
The measurement
ObjectStackAdapter.aggregate()(packages/data-objectstack/src/index.ts:4556-4573, on objectuiaca70f6) selects the spec-shape branch with:Inside that branch it reads only four keys:
params.filter,params.fieldandparams.functionare never read. They are not rejected and not warned about — they are simply absent fromqueryAst.Why that is reachable from the LEGACY caller shape
Array.isArray(params.groupBy)is one of the three entry conditions, and the legacy analytics shape is{ field, function, groupBy, filter }. So a caller that sends the legacy shape but whosegroupByhappens to be an array lands in the spec-shape branch, where:filteris dropped — the server aggregates the whole table while the caller believes a filter was applied;field/functionare dropped too, soqueryAstcarries agroupBywith noaggregationsat all — a grouping with no measure requested.Three in-tree callers forward an authored
groupByinto that predicate without constraining its type:packages/plugin-dashboard/src/DashboardRenderer.tsx:623and:704—groupBy: providerAgg.groupBy, alongsidefilter: widgetData.filter || widget.filterpackages/plugin-dashboard/src/DashboardGridLayout.tsx:280— same forwardpackages/plugin-dashboard/src/ObjectMetricWidget.tsx:246—groupBy: aggregate.groupBy || '_all', alongsidefilter: filterForRunIn every one of them
groupBycomes straight from authored widget metadata, and none of them is typed: the datasource isds: any/adapterat those seams.Contract status
The declared contract at this seam,
AggregateParams(packages/types/src/data.ts:1248-1258), says:It declares no
whereand noaggregationskey at all, andgroupByas a plain string. So the whole spec-shape branch accepts a params shape this interface does not describe, and the drop above happens between two keys (filtervswhere) of which only one is declared.Reachability today: NOT established (same as #6825)
The census for #6825 swept the whole worktree (5503 files across
.json/.ts/.tsx/.mdx/.md/.yaml/.yml, excludingnode_modules/dist/build/.git/.next/coverage/.turbo) and found zero authoredaggregate.groupBywritten as an array or an object — every one of the 18aggregate+groupBysites passes a string. So this is latent, exactly like #6825, and I am NOT claiming a live defect.Recording it anyway because the severity judgement is triage's, not mine, and because this variant is the one whose symptom matches the p1 condition triage wrote on #6825: the filter is dropped silently, the chart still renders, and the numbers are wrong with nothing to see.
Relationship to #6825
#6825 asks what branch 2 should do with a
whereit does not lower. This card asks what branch 2 should do with the keys it does not read. Both are answered by the same maintainer ruling about what that branch's accepted shape actually is, so this is probably a sub-question of that ruling rather than an independent repair — noted so it can be folded in rather than fixed separately.Refs: #6825 (the census this came out of) - #6302 / PR #6828 (the analytics-branch lowering) - #6206 (the sibling contract question about
element:number'sfilterbeing declared an object while every otherfilterinput is an array)Generated by Claude Code