(s int32)
| 74 | } |
| 75 | |
| 76 | func IsExponentialSchemaReserved(s int32) bool { |
| 77 | return s >= ExponentialSchemaMinReserved && s <= ExponentialSchemaMaxReserved |
| 78 | } |
| 79 | |
| 80 | func IsValidSchema(s int32) bool { |
| 81 | return IsCustomBucketsSchema(s) || IsExponentialSchema(s) |
no outgoing calls
no test coverage detected
searching dependent graphs…