Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pattern fix
Browse files Browse the repository at this point in the history
max-ostapenko committed Jan 30, 2025
1 parent bd07f78 commit 5967524
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions definitions/output/reports/tech_crux.js
Original file line number Diff line number Diff line change
@@ -150,14 +150,14 @@ crux AS (
technologies AS (
SELECT
tech.technology,
REGEXP_EXTRACT(version, r'(?:0|[1-9]\\d*)(?:\\.(?:0|[1-9]\\d*))?') AS version,
REGEXP_EXTRACT(version, r'(?:(?:0|[1-9])\\d*)(?:\\.(?:0|[1-9])\\d*)?') AS version,
client,
page
FROM pages,
UNNEST(technologies) AS tech,
UNNEST(tech.info) AS version
WHERE
REGEXP_EXTRACT(version, r'(?:0|[1-9]\\d*)(?:\\.(?:0|[1-9]\\d*))?') IS NOT NULL
REGEXP_EXTRACT(version, r'(?:(?:0|[1-9])\\d*)(?:\\.(?:0|[1-9])\\d*)?') IS NOT NULL
UNION ALL

0 comments on commit 5967524

Please sign in to comment.