mirror of
https://github.com/dolthub/dolt.git
synced 2026-04-22 11:29:06 -05:00
87 lines
2.3 KiB
Plaintext
87 lines
2.3 KiB
Plaintext
// Copyright 2021 Dolthub, Inc.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
namespace serial;
|
|
|
|
enum ItemType : uint8 {
|
|
Unknown,
|
|
TupleFormatAlpha = 1,
|
|
}
|
|
|
|
table ProllyTreeNode {
|
|
// sorted array of key items
|
|
key_items:[ubyte] (required);
|
|
// items offets for |key_items|, zeroth offset omitted
|
|
key_offsets:[uint16] (required);
|
|
// item type for |key_items|
|
|
key_type:ItemType;
|
|
|
|
// array of values items, ordered by paired key
|
|
value_items:[ubyte];
|
|
// item offsets for |value_items|, zeroth offset omitted
|
|
value_offsets:[uint16];
|
|
// item type for |value_items|
|
|
value_type:ItemType;
|
|
// offsets for each address (if any) in |value_items|
|
|
// (eg value tuples containing out-of-line BLOB addresses)
|
|
value_address_offsets:[uint16];
|
|
|
|
|
|
// array of chunk addresses
|
|
// - subtree addresses for internal prolly tree nodes
|
|
// - value addresses for AddressMap leaf nodes
|
|
address_array:[ubyte];
|
|
|
|
|
|
// array of uvarint encoded subtree counts
|
|
subtree_counts:[ubyte];
|
|
// total count of prolly tree
|
|
tree_count:uint64;
|
|
// prolly tree level, 0 for leaf nodes
|
|
tree_level:uint8;
|
|
}
|
|
|
|
/// Refmap has been deprecated in favor of AddressMap
|
|
table RefMap {
|
|
// map keys ordered lexigraphically
|
|
names:[string] (required);
|
|
|
|
// array of chunk addresses
|
|
// - subtree addresses for internal prolly tree nodes
|
|
// - value addresses for AddressMap leaf nodes
|
|
ref_array:[ubyte] (required);
|
|
|
|
// total count of prolly tree
|
|
tree_count:uint64;
|
|
// prolly tree level, 0 for leaf nodes
|
|
tree_level:uint8;
|
|
}
|
|
|
|
table CommitClosure {
|
|
// array of commit ref hashes
|
|
ref_array:[ubyte] (required);
|
|
|
|
// subtree member count
|
|
tree_count:uint64;
|
|
|
|
// node tree level, 0 for leaf nodes
|
|
tree_level:uint8;
|
|
}
|
|
|
|
|
|
// KEEP THIS IN SYNC WITH fileidentifiers.go
|
|
file_identifier "TUPM";
|
|
|
|
root_type ProllyTreeNode;
|