Skip to content

Commit 154ee48

Browse files
committed
Bump SQRL version to 0.10.7
1 parent 77f3f47 commit 154ee48

2 files changed

Lines changed: 4 additions & 4 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.10.6'
26+
SQRL_VERSION: '0.10.7'
2727

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

finance-credit-card-chatbot/credit-card-analytics/creditcard-testdata/transaction.table.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ CREATE TABLE Transaction (
55
amount DOUBLE NOT NULL,
66
merchantId BIGINT NOT NULL,
77
PRIMARY KEY (`transactionId`, `time`) NOT ENFORCED,
8-
WATERMARK FOR `time` AS `time` - INTERVAL '1' SECOND
8+
WATERMARK FOR `time` AS `time`
99
) WITH (
1010
'format' = 'flexible-json',
1111
'path' = '${DATA_PATH}/transaction.jsonl',
1212
'source.monitor-interval' = '10 min',
1313
'connector' = 'filesystem'
14-
);
14+
);

0 commit comments

Comments
 (0)