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.
2 parents 6c5476a + 477c6ff commit d4ba749Copy full SHA for d4ba749
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