(realKeyBytes []byte)
| 306 | } |
| 307 | |
| 308 | func (this *Table[T]) FullKeyBytes(realKeyBytes []byte) []byte { |
| 309 | var k = append(this.Namespace(), KeyPrefix...) |
| 310 | k = append(k, realKeyBytes...) |
| 311 | return k |
| 312 | } |
| 313 | |
| 314 | func (this *Table[T]) FieldKey(fieldName string) []byte { |
| 315 | var data = append(this.Namespace(), FieldPrefix...) |
no test coverage detected