aboutsummaryrefslogtreecommitdiff
path: root/contrib/data/pom.xml
diff options
context:
space:
mode:
authorJacques Nadeau <jacques@apache.org>2014-03-18 10:48:45 -0700
committerJacques Nadeau <jacques@apache.org>2014-03-26 22:46:38 -0700
commit129cd775ad8e28e2c6629e774ce2f2049f173557 (patch)
treef4135c7a3281c3ad4fc7ec2bd3d4d7d94eb52699 /contrib/data/pom.xml
parent721e7c25759eda2f12b17e15e4ca32ab16ec1e1c (diff)
- Add TPC-H Data as test dependency (automatically downloads from s3 on first execution)
- Update avg function to divide using double instead of integers - Update classpath file system to return correct size information (to allow cp use of Parquet files) - Enhance BaseTestQuery to support all query types (sql, physical logical) and execution from file - Add TPC-H queries updated to use TPC-H test data (disabled) - Update field name matching to be case insensitive. - Treat CHAR literals like VARCHAR in Optiq - Add clear as part of VectorUtil - Add hash aggregation physical plan executions using tpch data.
Diffstat (limited to 'contrib/data/pom.xml')
-rw-r--r--contrib/data/pom.xml37
1 files changed, 37 insertions, 0 deletions
diff --git a/contrib/data/pom.xml b/contrib/data/pom.xml
new file mode 100644
index 000000000..8fe1dcd07
--- /dev/null
+++ b/contrib/data/pom.xml
@@ -0,0 +1,37 @@
+<?xml version="1.0"?>
+<!--
+ 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.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <artifactId>drill-contrib-parent</artifactId>
+ <groupId>org.apache.drill.contrib</groupId>
+ <version>1.0.0-m2-incubating-SNAPSHOT</version>
+ </parent>
+
+ <groupId>org.apache.drill.contrib.data</groupId>
+ <artifactId>drill-contrib-data-parent</artifactId>
+ <name>contrib/data/Parent Pom</name>
+ <packaging>pom</packaging>
+
+ <dependencies>
+ </dependencies>
+
+ <modules>
+ <module>tpch-sample-data</module>
+ </modules>
+</project>