Skip to content

Commit 8d34ba2

Browse files
committed
fix: add % prefix to parameterized nodes and fix UInt64 types in org page pipes
Signed-off-by: Gašper Grom <gasper.grom@gmail.com>
1 parent 8176752 commit 8d34ba2

5 files changed

Lines changed: 9 additions & 5 deletions

File tree

services/libs/tinybird/datasources/org_page_kpis_copy_ds.datasource

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ DESCRIPTION >
44

55
SCHEMA >
66
`organizationId` String,
7-
`activeContributors` UInt32,
8-
`activeContributorsPrevious` UInt32,
9-
`maintainerRoles` UInt32,
10-
`criticalProjects` UInt32,
7+
`activeContributors` UInt64,
8+
`activeContributorsPrevious` UInt64,
9+
`maintainerRoles` UInt64,
10+
`criticalProjects` UInt64,
1111
`computedAt` DateTime
1212

1313
ENGINE ReplacingMergeTree

services/libs/tinybird/datasources/org_page_projects_copy_ds.datasource

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ SCHEMA >
99
`projectName` String,
1010
`projectLogo` String,
1111
`activityCount` UInt64,
12-
`contributorCount` UInt32,
12+
`contributorCount` UInt64,
1313
`computedAt` DateTime
1414

1515
ENGINE ReplacingMergeTree

services/libs/tinybird/pipes/org_page_kpis.pipe

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ TAGS "Organization page"
66

77
NODE org_page_kpis_main
88
SQL >
9+
%
910
SELECT
1011
activeContributors,
1112
if(

services/libs/tinybird/pipes/org_page_profile.pipe

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ TAGS "Organization page"
66

77
NODE org_page_profile_base
88
SQL >
9+
%
910
SELECT
1011
id,
1112
displayName,
@@ -18,6 +19,7 @@ SQL >
1819

1920
NODE org_page_profile_website
2021
SQL >
22+
%
2123
SELECT
2224
organizationId,
2325
argMax(value, updatedAt) AS website

services/libs/tinybird/pipes/org_page_projects.pipe

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ TAGS "Organization page"
66

77
NODE org_page_projects_main
88
SQL >
9+
%
910
SELECT
1011
projectSlug,
1112
projectName,

0 commit comments

Comments
 (0)