We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d30bd46 commit 888f5a6Copy full SHA for 888f5a6
commit_blobs.go
@@ -24,6 +24,9 @@ func newCommitBlobsTable() Indexable {
24
return new(commitBlobsTable)
25
}
26
27
+var _ Squashable = (*blobsTable)(nil)
28
+
29
+func (commitBlobsTable) isSquashable() {}
30
func (commitBlobsTable) isGitbaseTable() {}
31
32
func (commitBlobsTable) String() string {
tree_entries.go
@@ -30,7 +30,9 @@ func newTreeEntriesTable() Indexable {
var _ Table = (*treeEntriesTable)(nil)
33
+var _ Squashable = (*treeEntriesTable)(nil)
34
35
+func (treeEntriesTable) isSquashable() {}
36
func (treeEntriesTable) isGitbaseTable() {}
37
38
func (treeEntriesTable) Resolved() bool {
0 commit comments