Skip to content

Commit

Permalink
Updated dataset URLs in COPY FROM statements.
Browse files Browse the repository at this point in the history
Updated the dataset URLs in `COPY FROM` statements.
  • Loading branch information
simonprickett authored and amotl committed Jan 10, 2025
1 parent f62c263 commit 5e8e24d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/apache-superset/data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ CREATE TABLE IF NOT EXISTS devices_info (
);

COPY "devices_readings"
FROM 'https://github.com/crate/cratedb-datasets/raw/main/cloud-tutorials/devices_readings.json.gz'
FROM 'https://cdn.crate.io/downloads/datasets/cratedb-datasets/cloud-tutorials/devices_readings.json.gz'
WITH (compression = 'gzip');

COPY "devices_info"
FROM 'https://github.com/crate/cratedb-datasets/raw/main/cloud-tutorials/devices_info.json.gz'
FROM 'https://cdn.crate.io/downloads/datasets/cratedb-datasets/cloud-tutorials/devices_info.json.gz'
WITH (compression = 'gzip');

0 comments on commit 5e8e24d

Please sign in to comment.