-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optimizations for missing one implementation (#942)
* temp * test2 * best checkpoint, 20s * best checkpoint, 2s * fast local version too * simplify * screenshots * spreadout releases * update pt2 * fix determinisism
- Loading branch information
1 parent
31c79b5
commit 5d7739b
Showing
24 changed files
with
801 additions
and
567 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
-857 Bytes
(100%)
...ests/feature-page.spec.ts-snapshots/matches-the-screenshot-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-578 Bytes
(100%)
...tests/feature-page.spec.ts-snapshots/matches-the-screenshot-1-firefox-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-936 Bytes
(100%)
e2e/tests/feature-page.spec.ts-snapshots/matches-the-screenshot-1-webkit-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+16.2 KB
(110%)
...ew-page.spec.ts-snapshots/display-with-chromium-usage-column-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+17.8 KB
(110%)
...iew-page.spec.ts-snapshots/display-with-chromium-usage-column-firefox-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+20.9 KB
(110%)
...view-page.spec.ts-snapshots/display-with-chromium-usage-column-webkit-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+22.7 KB
(110%)
...sts/overview-page.spec.ts-snapshots/matches-the-screenshot-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+15.3 KB
(110%)
...ests/overview-page.spec.ts-snapshots/matches-the-screenshot-1-firefox-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+17.3 KB
(110%)
...tests/overview-page.spec.ts-snapshots/matches-the-screenshot-1-webkit-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
160 changes: 80 additions & 80 deletions
160
...overview-page.spec.ts-snapshots/webstatus-feature-overview-all-columns-chromium-linux.csv
Large diffs are not rendered by default.
Oops, something went wrong.
160 changes: 80 additions & 80 deletions
160
.../overview-page.spec.ts-snapshots/webstatus-feature-overview-all-columns-firefox-linux.csv
Large diffs are not rendered by default.
Oops, something went wrong.
160 changes: 80 additions & 80 deletions
160
...s/overview-page.spec.ts-snapshots/webstatus-feature-overview-all-columns-webkit-linux.csv
Large diffs are not rendered by default.
Oops, something went wrong.
160 changes: 80 additions & 80 deletions
160
...sts/overview-page.spec.ts-snapshots/webstatus-feature-overview-default-chromium-linux.csv
Large diffs are not rendered by default.
Oops, something went wrong.
160 changes: 80 additions & 80 deletions
160
...ests/overview-page.spec.ts-snapshots/webstatus-feature-overview-default-firefox-linux.csv
Large diffs are not rendered by default.
Oops, something went wrong.
160 changes: 80 additions & 80 deletions
160
...tests/overview-page.spec.ts-snapshots/webstatus-feature-overview-default-webkit-linux.csv
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file modified
BIN
-556 Bytes
(99%)
e2e/tests/stats-page.spec.ts-snapshots/matches-the-screenshot-1-chromium-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-870 Bytes
(99%)
e2e/tests/stats-page.spec.ts-snapshots/matches-the-screenshot-1-firefox-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-354 Bytes
(99%)
e2e/tests/stats-page.spec.ts-snapshots/matches-the-screenshot-1-webkit-linux.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
-- Copyright 2024 Google LLC | ||
-- | ||
-- Licensed under the Apache License, Version 2.0 (the "License"); | ||
-- you may not use this file except in compliance with the License. | ||
-- You may obtain a copy of the License at | ||
-- | ||
-- http://www.apache.org/licenses/LICENSE-2.0 | ||
-- | ||
-- Unless required by applicable law or agreed to in writing, software | ||
-- distributed under the License is distributed on an "AS IS" BASIS, | ||
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
-- See the License for the specific language governing permissions and | ||
-- limitations under the License. | ||
|
||
-- This index is designed to optimize queries that need to quickly identify the support status of | ||
-- a specific feature across different browsers and releases. This is particularly useful for | ||
-- identifying "missing one implementation" scenarios, where a feature is supported by all | ||
-- browsers except the target browser on a given release date. | ||
-- The descending order on EventReleaseDate supports efficient retrieval | ||
-- of the most recent releases. | ||
CREATE INDEX BrowserFeatureSupportEvents_FeatureStatusOnBrowserRelease ON | ||
BrowserFeatureSupportEvents( | ||
WebFeatureID, | ||
EventReleaseDate DESC, | ||
TargetBrowserName, | ||
SupportStatus | ||
); | ||
|
||
-- This index is designed to optimize queries that need to quickly identify the support status of | ||
-- all features for a specific target browser on a given release date. | ||
-- The descending order on EventReleaseDate supports efficient retrieval | ||
-- of the most recent releases. | ||
CREATE INDEX BrowserFeatureSupportEvents_AllFeatureStatusesOnBrowserRelease ON | ||
BrowserFeatureSupportEvents( | ||
EventReleaseDate DESC, | ||
TargetBrowserName, | ||
SupportStatus | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.