server/src/main/java/org/apache/cassandra/sidecar/db/schema/RestoreSlicesSchema.java [119:126]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        static String findAllByTokenRange(SchemaKeyspaceConfiguration config)
        {
            return withTable("SELECT job_id, bucket_id, slice_id, bucket, key, checksum, " +
                             "start_token, end_token, compressed_size, uncompressed_size " +
                             "FROM %s.%s " +
                             "WHERE job_id = ? AND bucket_id = ? AND " +
                             "end_token > ? AND start_token < ? ALLOW FILTERING", config);
        }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



server/src/main/java/org/apache/cassandra/sidecar/db/schema/RestoreJobsSchema.java [162:169]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        static String updateBlobSecrets(SchemaKeyspaceConfiguration config)
        {
            return withTable("INSERT INTO %s.%s (" +
                             "  created_at," +
                             "  job_id," +
                             "  blob_secrets" +
                             ") VALUES (?, ? ,?)", config);
        }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



