We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
UnsafeAppendBoolToBitmap()
1 parent 76e3ace commit 2defbc2Copy full SHA for 2defbc2
2 files changed
arrow/array/dictionary.go
@@ -623,12 +623,6 @@ func (b *dictionaryBuilder) Release() {
623
}
624
625
626
-func (b *dictionaryBuilder) UnsafeAppendBoolToBitmap(v bool) {
627
- b.length += 1
628
- b.nulls += 1
629
- b.idxBuilder.UnsafeAppendBoolToBitmap(v)
630
-}
631
-
632
func (b *dictionaryBuilder) AppendNull() {
633
b.length += 1
634
b.nulls += 1
arrow/array/encoded.go
@@ -386,15 +386,6 @@ func (b *RunEndEncodedBuilder) ContinueRun(n uint64) {
386
b.addLength(n)
387
388
389
-func (b *RunEndEncodedBuilder) UnsafeAppendBoolToBitmap(v bool) {
390
- if !v {
391
- b.finishRun()
392
- }
393
394
- b.values.UnsafeAppendBoolToBitmap(v)
395
- b.addLength(1)
396
397
398
func (b *RunEndEncodedBuilder) AppendNull() {
399
b.finishRun()
400
b.values.AppendNull()
0 commit comments