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.
scheme.Entry.IsColumnTable()
1 parent 6c5476a commit 477c6ffCopy full SHA for 477c6ff
CHANGELOG.md
@@ -1,3 +1,5 @@
1
+* Added `scheme.Entry.IsColumnTable()` helper
2
+
3
## v3.47.4
4
* Disabled check of node exists with `balancers.SingleConn`
5
* Improved code with `go-critic` linter
scheme/scheme.go
@@ -80,6 +80,10 @@ func (e *Entry) IsTable() bool {
80
return e.Type == EntryTable
81
}
82
83
+func (e *Entry) IsColumnTable() bool {
84
+ return e.Type == EntryColumnTable
85
+}
86
87
func (e *Entry) IsPersQueueGroup() bool {
88
return e.Type == EntryPersQueueGroup
89
0 commit comments