From 81f7a6d97d3ea06f2386ac5e58cdf9eded6444ae Mon Sep 17 00:00:00 2001 From: Pavel Emelyanov Date: Tue, 4 Feb 2025 16:30:21 +0300 Subject: [PATCH] doc: Update system.sstables table schema description The partition key had been renamed and its type changed some time ago, but the doc wasn't updated. Fix it. refs: #20998 Signed-off-by: Pavel Emelyanov Closes scylladb/scylladb#22683 --- docs/dev/system_keyspace.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/dev/system_keyspace.md b/docs/dev/system_keyspace.md index f2db6e6b20..df96f31053 100644 --- a/docs/dev/system_keyspace.md +++ b/docs/dev/system_keyspace.md @@ -177,13 +177,13 @@ The "ownership" table for non-local sstables Schema: ~~~ CREATE TABLE system.sstables ( - location text, + owner uuid, generation timeuuid, format text, status text, uuid uuid, version text, - PRIMARY KEY (location, generation) + PRIMARY KEY (owner, generation) ) ~~~