You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by bo...@apache.org on 2018/07/31 23:08:40 UTC

[drill] branch 1.14.0 updated (4da8aff -> 701f946)

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

boaz pushed a change to branch 1.14.0
in repository https://gitbox.apache.org/repos/asf/drill.git.


 discard 4da8aff  [maven-release-plugin] prepare release drill-1.14.0
     new 7dbc056  DRILL-6650: Remove stray semicolon in imports for PrintingResultsListener.
     new 701f946  DRILL-6651: Add missing package statements

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (4da8aff)
            \
             N -- N -- N   refs/heads/1.14.0 (701f946)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 common/pom.xml                                                 |  2 +-
 contrib/data/pom.xml                                           |  2 +-
 contrib/data/tpch-sample-data/pom.xml                          |  2 +-
 contrib/format-maprdb/pom.xml                                  |  2 +-
 contrib/gis/pom.xml                                            |  2 +-
 contrib/pom.xml                                                |  2 +-
 contrib/sqlline/pom.xml                                        |  2 +-
 contrib/storage-hbase/pom.xml                                  |  2 +-
 contrib/storage-hive/core/pom.xml                              |  2 +-
 contrib/storage-hive/hive-exec-shade/pom.xml                   |  2 +-
 contrib/storage-hive/pom.xml                                   |  2 +-
 contrib/storage-jdbc/pom.xml                                   |  2 +-
 contrib/storage-kafka/pom.xml                                  |  2 +-
 contrib/storage-kudu/pom.xml                                   |  2 +-
 contrib/storage-mongo/pom.xml                                  |  2 +-
 contrib/storage-opentsdb/pom.xml                               |  2 +-
 distribution/pom.xml                                           |  2 +-
 drill-yarn/pom.xml                                             |  2 +-
 exec/java-exec/pom.xml                                         |  2 +-
 .../drill/exec/store/parquet/TestComplexColumnInSchema.java    |  4 ++--
 .../drill/exec/store/parquet/TestParquetReaderUtility.java     |  2 +-
 .../java/org/apache/drill/test/PrintingResultsListener.java    |  2 +-
 exec/jdbc-all/pom.xml                                          |  2 +-
 exec/jdbc/pom.xml                                              |  2 +-
 exec/memory/base/pom.xml                                       |  2 +-
 exec/memory/pom.xml                                            |  2 +-
 exec/pom.xml                                                   |  2 +-
 exec/rpc/pom.xml                                               |  2 +-
 exec/vector/pom.xml                                            |  2 +-
 logical/pom.xml                                                |  2 +-
 pom.xml                                                        | 10 +++++-----
 protocol/pom.xml                                               |  2 +-
 tools/fmpp/pom.xml                                             |  2 +-
 tools/pom.xml                                                  |  2 +-
 34 files changed, 39 insertions(+), 39 deletions(-)


[drill] 01/02: DRILL-6650: Remove stray semicolon in imports for PrintingResultsListener.

Posted by bo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

boaz pushed a commit to branch 1.14.0
in repository https://gitbox.apache.org/repos/asf/drill.git

commit 7dbc05657f6d4507dc89b51f6b6c8a0ec058eb0f
Author: Timothy Farkas <ti...@apache.org>
AuthorDate: Tue Jul 31 12:45:09 2018 -0700

    DRILL-6650: Remove stray semicolon in imports for PrintingResultsListener.
---
 .../src/test/java/org/apache/drill/test/PrintingResultsListener.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/exec/java-exec/src/test/java/org/apache/drill/test/PrintingResultsListener.java b/exec/java-exec/src/test/java/org/apache/drill/test/PrintingResultsListener.java
index f5cd995..e1cfaeb 100644
--- a/exec/java-exec/src/test/java/org/apache/drill/test/PrintingResultsListener.java
+++ b/exec/java-exec/src/test/java/org/apache/drill/test/PrintingResultsListener.java
@@ -16,7 +16,7 @@
  * limitations under the License.
  */
 package org.apache.drill.test;
-;
+
 import org.apache.drill.common.config.DrillConfig;
 import org.apache.drill.common.exceptions.UserException;
 import org.apache.drill.exec.client.LoggingResultsListener;


[drill] 02/02: DRILL-6651: Add missing package statements

Posted by bo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

boaz pushed a commit to branch 1.14.0
in repository https://gitbox.apache.org/repos/asf/drill.git

commit 701f9466574b9428c926554392648637fb0cc7c4
Author: Ben-Zvi <bb...@mapr.com>
AuthorDate: Tue Jul 31 15:48:06 2018 -0700

    DRILL-6651: Add missing package statements
---
 .../apache/drill/exec/store/parquet/TestComplexColumnInSchema.java    | 4 ++--
 .../org/apache/drill/exec/store/parquet/TestParquetReaderUtility.java | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/exec/java-exec/src/test/java/org/apache/drill/exec/store/parquet/TestComplexColumnInSchema.java b/exec/java-exec/src/test/java/org/apache/drill/exec/store/parquet/TestComplexColumnInSchema.java
index d0977b8..29c2237 100644
--- a/exec/java-exec/src/test/java/org/apache/drill/exec/store/parquet/TestComplexColumnInSchema.java
+++ b/exec/java-exec/src/test/java/org/apache/drill/exec/store/parquet/TestComplexColumnInSchema.java
@@ -15,9 +15,9 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-import org.apache.drill.common.expression.SchemaPath;
-import org.apache.drill.exec.store.parquet.ParquetReaderUtility;
+package org.apache.drill.exec.store.parquet;
 
+import org.apache.drill.common.expression.SchemaPath;
 import org.apache.hadoop.conf.Configuration;
 import org.apache.hadoop.fs.Path;
 import org.apache.parquet.hadoop.metadata.ParquetMetadata;
diff --git a/exec/java-exec/src/test/java/org/apache/drill/exec/store/parquet/TestParquetReaderUtility.java b/exec/java-exec/src/test/java/org/apache/drill/exec/store/parquet/TestParquetReaderUtility.java
index 4b24212..1aab4ab 100644
--- a/exec/java-exec/src/test/java/org/apache/drill/exec/store/parquet/TestParquetReaderUtility.java
+++ b/exec/java-exec/src/test/java/org/apache/drill/exec/store/parquet/TestParquetReaderUtility.java
@@ -15,7 +15,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-import org.apache.drill.exec.store.parquet.ParquetReaderUtility;
+package org.apache.drill.exec.store.parquet;
 
 import org.apache.hadoop.conf.Configuration;
 import org.apache.hadoop.fs.Path;