Skip to content

Commit

Permalink
DRILL-2292: CTAS broken when we have repeated maps
Browse files Browse the repository at this point in the history
  • Loading branch information
adeneche authored and Hanifi Gunes committed Apr 28, 2015
1 parent 5f1d6d7 commit 5fbd274
Show file tree
Hide file tree
Showing 8 changed files with 234 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import org.apache.drill.common.types.TypeProtos.MinorType;
import org.apache.drill.common.types.Types;
import org.apache.drill.exec.expr.holders.RepeatedListHolder;
import org.apache.drill.exec.vector.ValueVector;
import org.apache.drill.exec.vector.complex.RepeatedListVector;
import org.apache.drill.exec.vector.complex.reader.FieldReader;
import org.apache.drill.exec.vector.complex.writer.BaseWriter.ListWriter;
Expand Down Expand Up @@ -85,6 +86,11 @@ public int size() {

@Override
public void setPosition(int index) {
if (index < 0 || index == NO_VALUES) {
currentOffset = NO_VALUES;
return;
}

super.setPosition(index);
RepeatedListHolder h = new RepeatedListHolder();
container.getAccessor().get(index, h);
Expand Down Expand Up @@ -121,12 +127,13 @@ public Object readObject() {
@Override
public FieldReader reader() {
if (reader == null) {
reader = container.getChild(name).getReader();
if (currentOffset == NO_VALUES) {
ValueVector child = container.getChild(name);
if (child == null) {
reader = NullReader.INSTANCE;
} else {
reader.setPosition(currentOffset);
reader = child.getReader();
}
reader.setPosition(currentOffset);
}
return reader;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,11 @@ public int size() {

@Override
public void setPosition(int index) {
if (index < 0 || index == NO_VALUES) {
currentOffset = NO_VALUES;
return;
}

super.setPosition(index);
RepeatedMapHolder h = new RepeatedMapHolder();
vector.getAccessor().get(index, h);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
/**
* 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.drill.exec;

import org.apache.drill.BaseTestQuery;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import org.junit.BeforeClass;
import org.junit.Test;

public class TestRepeatedReaders extends BaseTestQuery {

static FileSystem fs;

@BeforeClass
public static void initFs() throws Exception {
Configuration conf = new Configuration();
conf.set(FileSystem.FS_DEFAULT_NAME_KEY, "local");

fs = FileSystem.get(conf);
}

private static void deleteTableIfExists(String tableName) {
try {
Path path = new Path(getDfsTestTmpSchemaLocation(), tableName);
if (fs.exists(path)) {
fs.delete(path, true);
}
} catch (Exception e) {
// ignore exceptions.
}
}

private void createAndQuery(String datafile) throws Exception {
String query = String.format("select * from cp.`parquet/%s`", datafile);
String tableName = "test_repeated_readers_"+datafile;

try {
test("create table dfs_test.tmp.`%s` as %s", tableName, query);

testBuilder()
.sqlQuery("select * from dfs_test.tmp.`%s` d", tableName)
.ordered()
.jsonBaselineFile("parquet/" + datafile)
.go();
} finally {
deleteTableIfExists(tableName);
}
}

@Test //DRILL-2292
public void testNestedRepeatedMapInsideRepeatedMap() throws Exception {
createAndQuery("2292.rm_rm.json");
}

@Test //DRILL-2292
public void testNestedRepeatedMapInsideMapInsideRepeatedMap() throws Exception {
createAndQuery("2292.rm_m_rm.json");
}

@Test //DRILL-2292
public void testNestedRepeatedListInsideRepeatedMap() throws Exception {
runSQL("alter session set `store.format` = 'json'");

try {
createAndQuery("2292.rl_rm.json");
} finally {
runSQL("alter session set `store.format` = 'parquet'");
}
}

@Test //DRILL-2292
public void testNestedRepeatedMapInsideRepeatedList() throws Exception {
runSQL("alter session set `store.format` = 'json'");

try {
createAndQuery("2292.rm_rl.json");
} finally {
runSQL("alter session set `store.format` = 'parquet'");
}
}

@Test //DRILL-2292
public void testNestedRepeatedListInsideRepeatedList() throws Exception {
runSQL("alter session set `store.format` = 'json'");

try {
createAndQuery("2292.rl_rl.json");
} finally {
runSQL("alter session set `store.format` = 'parquet'");
}
}
}
21 changes: 21 additions & 0 deletions exec/java-exec/src/test/resources/parquet/2292.rl_rl.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"rp_list":[]
}
{
"rp_list":[]
}
{
"rp_list":[
[
[
["a","b"]
]
]
]
}
{
"rp_list":[]
}
{
"rp_list":[]
}
21 changes: 21 additions & 0 deletions exec/java-exec/src/test/resources/parquet/2292.rl_rm.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"rp_map":[]
}
{
"rp_map":[]
}
{
"rp_map":[
{
"rp_list": [
["a","b"]
]
}
]
}
{
"rp_map":[]
}
{
"rp_map":[]
}
23 changes: 23 additions & 0 deletions exec/java-exec/src/test/resources/parquet/2292.rm_m_rm.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"rp_map":[]
}
{
"rp_map":[]
}
{
"rp_map":[
{
"map":{
"rp_map":[
{"b":"boo"}
]
}
}
]
}
{
"rp_map":[]
}
{
"rp_map":[]
}
23 changes: 23 additions & 0 deletions exec/java-exec/src/test/resources/parquet/2292.rm_rl.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"rp_list":[]
}
{
"rp_list":[]
}
{
"rp_list":[
[
{
"rp_map":[
{"b":"boo"}
]
}
]
]
}
{
"rp_list":[]
}
{
"rp_list":[]
}
21 changes: 21 additions & 0 deletions exec/java-exec/src/test/resources/parquet/2292.rm_rm.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"rp_map":[]
}
{
"rp_map":[]
}
{
"rp_map":[
{
"rp_map":[
{"b":"boo"}
]
}
]
}
{
"rp_map":[]
}
{
"rp_map":[]
}

0 comments on commit 5fbd274

Please sign in to comment.