This is an automated email from the ASF dual-hosted git repository.

uwe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 27d8339  ARROW-2214: [JS] add nullBitmap getter to DictionaryData that 
proxies to its indices' nullBitmap
27d8339 is described below

commit 27d83392ecb763c7ae0f3775a6c6582377998522
Author: Paul Taylor <[email protected]>
AuthorDate: Mon Feb 26 14:11:07 2018 +0100

    ARROW-2214: [JS] add nullBitmap getter to DictionaryData that proxies to 
its indices' nullBitmap
    
    Resolves https://issues.apache.org/jira/browse/ARROW-2214
    
    Author: Paul Taylor <[email protected]>
    
    Closes #1659 from trxcllnt/ARROW-2214 and squashes the following commits:
    
    8c4ba46 <Paul Taylor> add nullBitmap getter to DictionaryData that proxies 
to its indices' nullBitmap
---
 js/src/data.ts | 1 +
 1 file changed, 1 insertion(+)

diff --git a/js/src/data.ts b/js/src/data.ts
index ab2e40a..d49fb79 100644
--- a/js/src/data.ts
+++ b/js/src/data.ts
@@ -158,6 +158,7 @@ export class DictionaryData<T extends DataType> extends 
BaseData<Dictionary<T>>
         this.length = this._indicies.length;
     }
     public get nullCount() { return this._indicies.nullCount; }
+    public get nullBitmap() { return this._indicies.nullBitmap; }
     public clone<R extends Dictionary<T>>(type: R, length = this.length, 
offset = this.offset) {
         const data = this._dictionary.data.clone(type.dictionary as any);
         return new DictionaryData<R>(

-- 
To stop receiving notification emails like this one, please contact
[email protected].

Reply via email to