[jira] [Commented] (PARQUET-1292) Add constructors to ProtoParquetWriter to write specs compliant Parquet

2018-05-04 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/PARQUET-1292?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16464496#comment-16464496
 ] 

ASF GitHub Bot commented on PARQUET-1292:
-

chawlakunal commented on issue #473: PARQUET-1292 Adding constructors to 
ProtoParquetWriter with writeSpecsCompliant flag
URL: https://github.com/apache/parquet-mr/pull/473#issuecomment-386758887
 
 
   @BenoitHanotte Can this be approved and merged?


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Add constructors to ProtoParquetWriter to write specs compliant Parquet
> ---
>
> Key: PARQUET-1292
> URL: https://issues.apache.org/jira/browse/PARQUET-1292
> Project: Parquet
>  Issue Type: Improvement
>Reporter: Kunal Chawla
>Assignee: Kunal Chawla
>Priority: Minor
> Fix For: 1.11
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (PARQUET-1211) Write column indexes: read/write API

2018-05-04 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/PARQUET-1211?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16463912#comment-16463912
 ] 

ASF GitHub Bot commented on PARQUET-1211:
-

zivanfi commented on a change in pull request #456: PARQUET-1211: Write column 
indexes: read/write API
URL: https://github.com/apache/parquet-mr/pull/456#discussion_r186065400
 
 

 ##
 File path: 
parquet-column/src/test/java/org/apache/parquet/column/columnindex/TestOffsetIndexBuilder.java
 ##
 @@ -0,0 +1,129 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.parquet.column.columnindex;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNull;
+
+import org.junit.Test;
+
+/**
+ * Tests for {@link OffsetIndexBuilder}.
+ */
+public class TestOffsetIndexBuilder {
+  @Test
+  public void testBuilderWithSizeAndRowCount() {
+OffsetIndexBuilder builder = OffsetIndexBuilder.getBuilder();
+assertNull(builder.build());
+assertNull(builder.build(1234));
+
+builder.add(1000, 10);
+builder.add(2000, 19);
+builder.add(3000, 27);
+builder.add(1200, 9);
+assertCorrectValues(builder.build(),
+0, 1000, 0,
+1000, 2000, 10,
+3000, 3000, 29,
+6000, 1200, 56);
+
+builder = OffsetIndexBuilder.getBuilder();
 
 Review comment:
   I may be mistaken, but recreating the builder with the same values seems 
unnecessary to me.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Write column indexes: read/write API
> 
>
> Key: PARQUET-1211
> URL: https://issues.apache.org/jira/browse/PARQUET-1211
> Project: Parquet
>  Issue Type: Sub-task
>Reporter: Gabor Szadovszky
>Assignee: Gabor Szadovszky
>Priority: Major
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (PARQUET-1211) Write column indexes: read/write API

2018-05-04 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/PARQUET-1211?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16463915#comment-16463915
 ] 

ASF GitHub Bot commented on PARQUET-1211:
-

zivanfi commented on a change in pull request #456: PARQUET-1211: Write column 
indexes: read/write API
URL: https://github.com/apache/parquet-mr/pull/456#discussion_r186063306
 
 

 ##
 File path: 
parquet-column/src/test/java/org/apache/parquet/column/columnindex/TestColumnIndexBuilder.java
 ##
 @@ -0,0 +1,940 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.parquet.column.columnindex;
+
+import static java.util.Arrays.asList;
+import static org.apache.parquet.schema.OriginalType.DECIMAL;
+import static org.apache.parquet.schema.OriginalType.UINT_8;
+import static org.apache.parquet.schema.OriginalType.UTF8;
+import static org.apache.parquet.schema.PrimitiveType.PrimitiveTypeName.BINARY;
+import static 
org.apache.parquet.schema.PrimitiveType.PrimitiveTypeName.BOOLEAN;
+import static org.apache.parquet.schema.PrimitiveType.PrimitiveTypeName.DOUBLE;
+import static org.apache.parquet.schema.PrimitiveType.PrimitiveTypeName.FLOAT;
+import static org.apache.parquet.schema.PrimitiveType.PrimitiveTypeName.INT32;
+import static org.apache.parquet.schema.PrimitiveType.PrimitiveTypeName.INT64;
+import static org.hamcrest.CoreMatchers.instanceOf;
+import static org.junit.Assert.assertArrayEquals;
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertNull;
+import static org.junit.Assert.assertThat;
+import static org.junit.Assert.fail;
+
+import java.math.BigDecimal;
+import java.nio.ByteBuffer;
+import java.util.ArrayList;
+import java.util.List;
+
+import org.apache.parquet.bytes.BytesUtils;
+import org.apache.parquet.column.statistics.Statistics;
+import org.apache.parquet.io.api.Binary;
+import org.apache.parquet.schema.PrimitiveType;
+import org.apache.parquet.schema.Types;
+import org.junit.Test;
+
+/**
+ * Tests for {@link ColumnIndexBuilder}.
+ */
+public class TestColumnIndexBuilder {
+
+  @Test
+  public void testBuildBinaryDecimal() {
+PrimitiveType type = 
Types.required(BINARY).as(DECIMAL).precision(12).scale(2).named("test_binary_decimal");
+ColumnIndexBuilder builder = ColumnIndexBuilder.getBuilder(type);
+assertThat(builder, instanceOf(BinaryColumnIndexBuilder.class));
+assertNull(builder.build());
+
+builder.add(stats(type, null, null));
+builder.add(stats(type, decimalBinary("-0.17"), 
decimalBinary("1234567890.12")));
+builder.add(stats(type, decimalBinary("-234.23"), null, null, null));
+builder.add(stats(type, null, null, null));
+builder.add(stats(type, decimalBinary("-293.23"), 
decimalBinary("2348978.45")));
+builder.add(stats(type, null, null, null, null));
+builder.add(stats(type, null, null));
+builder.add(stats(type, decimalBinary("87656273")));
+ColumnIndex columnIndex = builder.build();
+assertEquals(BoundaryOrder.UNORDERED, columnIndex.getBoundaryOrder());
+assertCorrectNullCounts(columnIndex, 2, 0, 3, 3, 0, 4, 2, 0);
+assertCorrectNullPages(columnIndex, true, false, false, true, false, true, 
true, false);
+assertCorrectValues(columnIndex.getMaxValues(),
+null,
+decimalBinary("1234567890.12"),
+decimalBinary("-234.23"),
+null,
+decimalBinary("2348978.45"),
+null,
+null,
+decimalBinary("87656273"));
+assertCorrectValues(columnIndex.getMinValues(),
+null,
+decimalBinary("-0.17"),
+decimalBinary("-234.23"),
+null,
+decimalBinary("-293.23"),
+null,
+null,
+decimalBinary("87656273"));
+
+builder = ColumnIndexBuilder.getBuilder(type);
+builder.add(stats(type, null, null, null, null));
+builder.add(stats(type, decimalBinary("-293.23"), 
decimalBinary("-234.23")));
+builder.add(stats(type, decimalBinary("-0.17"), 
decimalBinary("87656273")));
+builder.add(stats(type, null, null));
+builder.add(stats(type, decimalBinary("87656273"

[jira] [Commented] (PARQUET-1211) Write column indexes: read/write API

2018-05-04 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/PARQUET-1211?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16463914#comment-16463914
 ] 

ASF GitHub Bot commented on PARQUET-1211:
-

zivanfi commented on a change in pull request #456: PARQUET-1211: Write column 
indexes: read/write API
URL: https://github.com/apache/parquet-mr/pull/456#discussion_r186065634
 
 

 ##
 File path: 
parquet-column/src/test/java/org/apache/parquet/column/columnindex/TestOffsetIndexBuilder.java
 ##
 @@ -0,0 +1,129 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.parquet.column.columnindex;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNull;
+
+import org.junit.Test;
+
+/**
+ * Tests for {@link OffsetIndexBuilder}.
+ */
+public class TestOffsetIndexBuilder {
+  @Test
+  public void testBuilderWithSizeAndRowCount() {
+OffsetIndexBuilder builder = OffsetIndexBuilder.getBuilder();
+assertNull(builder.build());
+assertNull(builder.build(1234));
+
+builder.add(1000, 10);
+builder.add(2000, 19);
+builder.add(3000, 27);
+builder.add(1200, 9);
+assertCorrectValues(builder.build(),
+0, 1000, 0,
+1000, 2000, 10,
+3000, 3000, 29,
+6000, 1200, 56);
+
+builder = OffsetIndexBuilder.getBuilder();
+builder.add(1000, 10);
+builder.add(2000, 19);
+builder.add(3000, 27);
+builder.add(1200, 9);
+assertCorrectValues(builder.build(1),
+1, 1000, 0,
+11000, 2000, 10,
+13000, 3000, 29,
+16000, 1200, 56);
+  }
+
+  @Test
+  public void testNoOpBuilderWithSizeAndRowCount() {
+OffsetIndexBuilder builder = OffsetIndexBuilder.getNoOpBuilder();
+builder.add(1, 2);
+builder.add(3, 4);
+builder.add(5, 6);
+builder.add(7, 8);
+assertNull(builder.build());
+builder.add(1, 2);
 
 Review comment:
   Are these repeated adds intentional?


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Write column indexes: read/write API
> 
>
> Key: PARQUET-1211
> URL: https://issues.apache.org/jira/browse/PARQUET-1211
> Project: Parquet
>  Issue Type: Sub-task
>Reporter: Gabor Szadovszky
>Assignee: Gabor Szadovszky
>Priority: Major
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (PARQUET-1211) Write column indexes: read/write API

2018-05-04 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/PARQUET-1211?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16463916#comment-16463916
 ] 

ASF GitHub Bot commented on PARQUET-1211:
-

zivanfi commented on a change in pull request #456: PARQUET-1211: Write column 
indexes: read/write API
URL: https://github.com/apache/parquet-mr/pull/456#discussion_r186065969
 
 

 ##
 File path: 
parquet-column/src/test/java/org/apache/parquet/column/columnindex/TestOffsetIndexBuilder.java
 ##
 @@ -0,0 +1,129 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.parquet.column.columnindex;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNull;
+
+import org.junit.Test;
+
+/**
+ * Tests for {@link OffsetIndexBuilder}.
+ */
+public class TestOffsetIndexBuilder {
+  @Test
+  public void testBuilderWithSizeAndRowCount() {
+OffsetIndexBuilder builder = OffsetIndexBuilder.getBuilder();
+assertNull(builder.build());
+assertNull(builder.build(1234));
+
+builder.add(1000, 10);
+builder.add(2000, 19);
+builder.add(3000, 27);
+builder.add(1200, 9);
+assertCorrectValues(builder.build(),
+0, 1000, 0,
+1000, 2000, 10,
+3000, 3000, 29,
+6000, 1200, 56);
+
+builder = OffsetIndexBuilder.getBuilder();
+builder.add(1000, 10);
+builder.add(2000, 19);
+builder.add(3000, 27);
+builder.add(1200, 9);
+assertCorrectValues(builder.build(1),
+1, 1000, 0,
+11000, 2000, 10,
+13000, 3000, 29,
+16000, 1200, 56);
+  }
+
+  @Test
+  public void testNoOpBuilderWithSizeAndRowCount() {
+OffsetIndexBuilder builder = OffsetIndexBuilder.getNoOpBuilder();
+builder.add(1, 2);
+builder.add(3, 4);
+builder.add(5, 6);
+builder.add(7, 8);
+assertNull(builder.build());
+builder.add(1, 2);
+builder.add(3, 4);
+builder.add(5, 6);
+builder.add(7, 8);
+assertNull(builder.build(1000));
+  }
+
+  @Test
+  public void testBuilderWithOffsetSizeIndex() {
+OffsetIndexBuilder builder = OffsetIndexBuilder.getBuilder();
+assertNull(builder.build());
+assertNull(builder.build(1234));
+
+builder.add(1000, 1, 0);
+builder.add(22000, 12000, 100);
+builder.add(48000, 22000, 211);
+builder.add(9, 3, 361);
+assertCorrectValues(builder.build(),
+1000, 1, 0,
+22000, 12000, 100,
+48000, 22000, 211,
+9, 3, 361);
+
+builder = OffsetIndexBuilder.getBuilder();
+builder.add(1000, 1, 0);
+builder.add(22000, 12000, 100);
+builder.add(48000, 22000, 211);
+builder.add(9, 3, 361);
+assertCorrectValues(builder.build(10),
+101000, 1, 0,
+122000, 12000, 100,
+148000, 22000, 211,
+19, 3, 361);
+  }
+
+  @Test
+  public void testNoOpBuidlerWithOffsetSizeIndex() {
+OffsetIndexBuilder builder = OffsetIndexBuilder.getNoOpBuilder();
+builder.add(1, 2, 3);
+builder.add(4, 5, 6);
+builder.add(7, 8, 9);
+builder.add(10, 11, 12);
+assertNull(builder.build());
+builder.add(1, 2, 3);
 
 Review comment:
   Seems like unintentional duplication.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Write column indexes: read/write API
> 
>
> Key: PARQUET-1211
> URL: https://issues.apache.org/jira/browse/PARQUET-1211
> Project: Parquet
>  Issue Type: Sub-task
>Reporter: Gabor Szadovszky
>Assignee: Gabor Szadovszky
>Priority: Major
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (PARQUET-1211) Write column indexes: read/write API

2018-05-04 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/PARQUET-1211?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16463913#comment-16463913
 ] 

ASF GitHub Bot commented on PARQUET-1211:
-

zivanfi commented on a change in pull request #456: PARQUET-1211: Write column 
indexes: read/write API
URL: https://github.com/apache/parquet-mr/pull/456#discussion_r186065731
 
 

 ##
 File path: 
parquet-column/src/test/java/org/apache/parquet/column/columnindex/TestOffsetIndexBuilder.java
 ##
 @@ -0,0 +1,129 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.parquet.column.columnindex;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNull;
+
+import org.junit.Test;
+
+/**
+ * Tests for {@link OffsetIndexBuilder}.
+ */
+public class TestOffsetIndexBuilder {
+  @Test
+  public void testBuilderWithSizeAndRowCount() {
+OffsetIndexBuilder builder = OffsetIndexBuilder.getBuilder();
+assertNull(builder.build());
+assertNull(builder.build(1234));
+
+builder.add(1000, 10);
+builder.add(2000, 19);
+builder.add(3000, 27);
+builder.add(1200, 9);
+assertCorrectValues(builder.build(),
+0, 1000, 0,
+1000, 2000, 10,
+3000, 3000, 29,
+6000, 1200, 56);
+
+builder = OffsetIndexBuilder.getBuilder();
+builder.add(1000, 10);
+builder.add(2000, 19);
+builder.add(3000, 27);
+builder.add(1200, 9);
+assertCorrectValues(builder.build(1),
+1, 1000, 0,
+11000, 2000, 10,
+13000, 3000, 29,
+16000, 1200, 56);
+  }
+
+  @Test
+  public void testNoOpBuilderWithSizeAndRowCount() {
+OffsetIndexBuilder builder = OffsetIndexBuilder.getNoOpBuilder();
+builder.add(1, 2);
+builder.add(3, 4);
+builder.add(5, 6);
+builder.add(7, 8);
+assertNull(builder.build());
+builder.add(1, 2);
+builder.add(3, 4);
+builder.add(5, 6);
+builder.add(7, 8);
+assertNull(builder.build(1000));
+  }
+
+  @Test
+  public void testBuilderWithOffsetSizeIndex() {
+OffsetIndexBuilder builder = OffsetIndexBuilder.getBuilder();
+assertNull(builder.build());
+assertNull(builder.build(1234));
+
+builder.add(1000, 1, 0);
+builder.add(22000, 12000, 100);
+builder.add(48000, 22000, 211);
+builder.add(9, 3, 361);
+assertCorrectValues(builder.build(),
+1000, 1, 0,
+22000, 12000, 100,
+48000, 22000, 211,
+9, 3, 361);
+
+builder = OffsetIndexBuilder.getBuilder();
 
 Review comment:
   Like before, this seems unnecessary.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Write column indexes: read/write API
> 
>
> Key: PARQUET-1211
> URL: https://issues.apache.org/jira/browse/PARQUET-1211
> Project: Parquet
>  Issue Type: Sub-task
>Reporter: Gabor Szadovszky
>Assignee: Gabor Szadovszky
>Priority: Major
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[VOTE] Release Apache Parquet MR 1.8.3 RC0

2018-05-04 Thread Gabor Szadovszky
Hi everyone,

Zoltan and I propose the following RC to be released as official Apache Parquet 
MR 1.8.3 release.

The commit id is aef7230e114214b7cc962a8f3fc5aeed6ce80828
* This corresponds to the tag: apache-parquet-1.8.3
* 
https://github.com/apache/parquet-mr/tree/aef7230e114214b7cc962a8f3fc5aeed6ce80828
 


The release tarball, signature, and checksums are here:
* https://dist.apache.org/repos/dist/dev/parquet/apache-parquet-1.8.3-rc0/ 


You can find the KEYS file here:
* https://dist.apache.org/repos/dist/dev/parquet/KEYS 


Binary artifacts are staged in Nexus here:
* https://repository.apache.org/content/groups/staging/org/apache/parquet/ 


This is a maintenance release created mainly for Spark containing 2 bug fixes 
related to the statistics handling.
See 
https://github.com/apache/parquet-mr/blob/aef7230e114214b7cc962a8f3fc5aeed6ce80828/CHANGES.md
 

 for details.

Please download, verify, and test.

[ ] +1 Release this as Apache Parquet MR 1.8.3
[ ] +0
[ ] -1 Do not release this becauseā€¦

[jira] [Commented] (PARQUET-1292) Add constructors to ProtoParquetWriter to write specs compliant Parquet

2018-05-04 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/PARQUET-1292?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16463645#comment-16463645
 ] 

ASF GitHub Bot commented on PARQUET-1292:
-

zivanfi commented on issue #473: PARQUET-1292 Adding constructors to 
ProtoParquetWriter with writeSpecsCompliant flag
URL: https://github.com/apache/parquet-mr/pull/473#issuecomment-386555458
 
 
   @chawlakunal, I added you the list of contributors so that you can assign 
JIRA-s to yourself. I assigned this one to you to make sure it works.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Add constructors to ProtoParquetWriter to write specs compliant Parquet
> ---
>
> Key: PARQUET-1292
> URL: https://issues.apache.org/jira/browse/PARQUET-1292
> Project: Parquet
>  Issue Type: Improvement
>Reporter: Kunal Chawla
>Assignee: Kunal Chawla
>Priority: Minor
> Fix For: 1.11
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Assigned] (PARQUET-1292) Add constructors to ProtoParquetWriter to write specs compliant Parquet

2018-05-04 Thread Zoltan Ivanfi (JIRA)

 [ 
https://issues.apache.org/jira/browse/PARQUET-1292?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Zoltan Ivanfi reassigned PARQUET-1292:
--

Assignee: Kunal Chawla

> Add constructors to ProtoParquetWriter to write specs compliant Parquet
> ---
>
> Key: PARQUET-1292
> URL: https://issues.apache.org/jira/browse/PARQUET-1292
> Project: Parquet
>  Issue Type: Improvement
>Reporter: Kunal Chawla
>Assignee: Kunal Chawla
>Priority: Minor
> Fix For: 1.11
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)