From 630d1917bafeadb17ddf56f16d7c44382716d0ed Mon Sep 17 00:00:00 2001 From: Simon Prickett Date: Thu, 9 Jan 2025 16:18:26 +0000 Subject: [PATCH] Updated Netflix example data URL Updated URL for loading Netflix example data as we can no longer rely on direct access from GitHub. --- src/store/notebooks_store.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/notebooks_store.js b/src/store/notebooks_store.js index e3d2683..a8425fa 100644 --- a/src/store/notebooks_store.js +++ b/src/store/notebooks_store.js @@ -27,7 +27,7 @@ const NETFLIX_TUTORIAL_NOTEBOOK = { }, { "id": 2, "name": "Copy data", - "content": "COPY netflix_catalog\nFROM\n 'https://github.com/crate/cratedb-datasets/raw/main/cloud-tutorials/data_netflix.json.gz' WITH (format = 'json', compression = 'gzip');", + "content": "COPY netflix_catalog\nFROM\n 'https://cdn.crate.io/downloads/datasets/cratedb-datasets/cloud-tutorials/data_netflix.json.gz' WITH (format = 'json', compression = 'gzip');", "cursor_is_at_the_beginning": true, "cursor_is_at_the_end": true, "response": {"type": ""},