Skip to content

Commit 1893ea6

Browse files
authored
Merge pull request #105 from DataSQRL/bump-sqrl-0.10.3
Bump SQRL version to 0.10.4
2 parents 18d7e34 + 49bc549 commit 1893ea6

32 files changed

Lines changed: 46 additions & 64 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ concurrency:
2323

2424
env:
2525
TZ: 'America/Los_Angeles'
26-
SQRL_VERSION: '0.9.5'
26+
SQRL_VERSION: '0.10.4'
2727

2828
jobs:
2929
build-and-push:
@@ -172,7 +172,7 @@ jobs:
172172
IMAGE="${{ inputs.sqrl_image }}"
173173
IS_SNAPSHOT=true
174174
else
175-
IMAGE="datasqrl/cmd:${SQRL_VERSION}"
175+
IMAGE="ghcr.io/datasqrl/cmd:${SQRL_VERSION}"
176176
IS_SNAPSHOT=false
177177
fi
178178
echo "image=$IMAGE" >> "$GITHUB_OUTPUT"

clickstream-ai-recommendation/clickstream-api/clickstream.table.sql renamed to clickstream-ai-recommendation/clickstream-api/clickstream.sqrl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/*+ engine(kafka) */
12
CREATE TABLE Clickstream (
23
url STRING NOT NULL,
34
userid STRING NOT NULL,

clickstream-ai-recommendation/clickstream-kafka/clickstream.table.sql renamed to clickstream-ai-recommendation/clickstream-kafka/clickstream.sqrl

File renamed without changes.

clickstream-ai-recommendation/content-api/.nodiscovery

Whitespace-only changes.

clickstream-ai-recommendation/content-api/content.table.sql renamed to clickstream-ai-recommendation/content-api/content.sqrl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
/*+ engine(kafka) */
12
CREATE TABLE Content (
23
url STRING NOT NULL,
34
title STRING NOT NULL,
45
text STRING NOT NULL,
56
update_time TIMESTAMP_LTZ(3) NOT NULL METADATA FROM 'timestamp'
6-
)
7+
);

clickstream-ai-recommendation/content-kafka/content.table.sql renamed to clickstream-ai-recommendation/content-kafka/content.sqrl

File renamed without changes.

clickstream-ai-recommendation/recommendation.sqrl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*+no_query */
2-
IMPORT clickstream-{{variant}}.clickstream;
2+
IMPORT clickstream-{{variant}}.clickstream.*;
33

44
/*+no_query */
5-
IMPORT content-{{variant}}.content;
5+
IMPORT content-{{variant}}.content.*;
66

77
/* Find next page visits within 10 minutes */
88
_CoVisits := SELECT b.url AS beforeURL, a.url AS afterURL,

finance-credit-card-chatbot/credit-card-views/creditcard_views.sqrl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ _Merchant := DISTINCT _MerchantStream ON merchantId ORDER BY updatedTime D
88
_CardAssignment := DISTINCT _CardAssignmentStream ON cardNo ORDER BY `timestamp` DESC;
99

1010
/* Enrich credit card transactions with customer and merchant information */
11-
/*+partition_key(customerId) */
1211
_CustomerTransaction := SELECT t.transactionId, t.cardNo, t.`time`, t.amount,
1312
m.category, c.customerId, m.merchantId
1413
FROM _Transaction t

healthcare-study/healthcare-study-api/metrics-api/clinical_indicator.table.sql renamed to healthcare-study/healthcare-study-api/metrics-api/clinical_indicator.sqrl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
CREATE TABLE ClinicalIndicator (
1+
/*+ engine(kafka) */
2+
CREATE TABLE AddClinicalData (
23
sensorId BIGINT NOT NULL,
34
metric DOUBLE NOT NULL,
45
`timestamp` TIMESTAMP_LTZ(3) NOT NULL METADATA FROM 'timestamp'
5-
);
6+
);

healthcare-study/healthcare-study-api/metrics-testdata/clinical_indicator.avsc

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)