We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a40345 commit a15c35eCopy full SHA for a15c35e
config/media_store.sql
@@ -31,11 +31,7 @@ DROP TABLE IF EXISTS Playlist;
31
DROP TABLE IF EXISTS PlaylistTrack;
32
DROP TABLE IF EXISTS Track;
33
34
-DROP ZONE IF EXISTS Chinook;
35
-DROP ZONE IF EXISTS ChinookReplicated;
36
-
37
-CREATE ZONE Chinook WITH replicas=2, storage_profiles='default';
38
-CREATE ZONE ChinookReplicated WITH replicas=3, partitions=25, storage_profiles='default';
+ALTER ZONE "Default" SET replicas = 2;
39
40
CREATE TABLE Artist
41
(
@@ -50,7 +46,7 @@ CREATE TABLE Album
50
46
Title VARCHAR(160),
51
47
ArtistId INT,
52
48
PRIMARY KEY (AlbumId, ArtistId)
53
-) COLOCATE BY (ArtistId) ZONE chinook;
49
+) COLOCATE BY (ArtistId);
54
55
CREATE TABLE Customer
56
0 commit comments