summaryrefslogtreecommitdiffstats
path: root/persistence
diff options
context:
space:
mode:
Diffstat (limited to 'persistence')
-rw-r--r--persistence/src/vespa/persistence/spi/bucket.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/persistence/src/vespa/persistence/spi/bucket.h b/persistence/src/vespa/persistence/spi/bucket.h
index dec185b6082..54760304694 100644
--- a/persistence/src/vespa/persistence/spi/bucket.h
+++ b/persistence/src/vespa/persistence/spi/bucket.h
@@ -25,7 +25,7 @@ class Bucket {
PartitionId _partition;
public:
- Bucket() : _bucket(document::BucketSpace::placeHolder(), document::BucketId(0)), _partition(0) {}
+ Bucket() : _bucket(document::BucketSpace::invalid(), document::BucketId(0)), _partition(0) {}
Bucket(const document::Bucket& b, PartitionId p)
: _bucket(b), _partition(p) {}