Repository: phoenix
Updated Branches:
  refs/heads/4.0 6477e0fd3 -> 5614dbd5e


Update CHANGES and fix Apache RAT warning


Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/5614dbd5
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/5614dbd5
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/5614dbd5

Branch: refs/heads/4.0
Commit: 5614dbd5eb196cd13ee8c8ea75ee7927cd6644a3
Parents: 6477e0f
Author: Mujtaba <mujt...@apache.org>
Authored: Tue Oct 28 16:17:13 2014 -0700
Committer: Mujtaba <mujt...@apache.org>
Committed: Tue Oct 28 16:17:13 2014 -0700

----------------------------------------------------------------------
 CHANGES                                            | 14 ++++++++++++++
 .../org/apache/phoenix/trace/TracingTestUtil.java  | 17 +++++++++++++++++
 2 files changed, 31 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/5614dbd5/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index 840a91a..745a7c6 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,8 @@ Release Notes - Phoenix - Version 4.2
     * [PHOENIX-943] - Handle pushed down post-filters for subquery in joins 
with limit and non-groupby aggregation
     * [PHOENIX-945] - Support correlated subqueries in comparison without 
ANY/SOME/ALL
     * [PHOENIX-1085] - Commonize logic for adding salt byte and adding region 
start key in ParallelIterators
+    * [PHOENIX-1168] - Support non-correlated sub-queries in where clause 
having a comparison operator with no modifier or a comparison operator modified 
by ANY, SOME or ALL
+    * [PHOENIX-1170] - Change status of local index during splitting to 
prevent usage when slower than query through data table
     * [PHOENIX-1249] - Support local immutable index 
     * [PHOENIX-1259] - Perform partial scan for ANALYZE when table salted or 
local index
     * [PHOENIX-1263] - Only cache guideposts on physical PTable
@@ -23,7 +25,9 @@ Release Notes - Phoenix - Version 4.2
 
 ** Bug
     * [PHOENIX-105] - Remove org.apache.commons.csv source once available in 
Maven repo
+    * [PHOENIX-897] - psql command doesn't allow using certain characters in 
invocation
     * [PHOENIX-941] - Parallelize within regions to prevent rpc timeout
+    * [PHOENIX-944] - Support derived tables in FROM clause that needs extra 
steps of client-side aggregation or other processing
     * [PHOENIX-973] - Lexer skips unexpected characters
     * [PHOENIX-1044] - Phoenix-Pig: No results returned unless all used 
columns are selected
     * [PHOENIX-1095] - Cannot add column to SYSTEM.CATALOG using Alter Table 
@@ -63,6 +67,7 @@ Release Notes - Phoenix - Version 4.2
     * [PHOENIX-1281] - Each MultiKeyValueTuple.setKeyValues creates a new 
immutable list object
     * [PHOENIX-1284] - Override config properties for unit tests not making it 
to server
     * [PHOENIX-1285] - Override default for histogram depth in 
QueryServicesTestImpl
+    * [PHOENIX-1286] - Remove hadoop2 compat modules
     * [PHOENIX-1288] - Selecting more than 2 array elements via index fails 
with ArrayIndexOutOfBoundsException
     * [PHOENIX-1289] - Drop index during upsert may abort RS
     * [PHOENIX-1298] - Queries on fixed width type columns that have an index 
declared on them don't use that index
@@ -92,9 +97,18 @@ Release Notes - Phoenix - Version 4.2
     * [PHOENIX-1361] - Sequence value goes backwards if sequence validated 
before reserved
     * [PHOENIX-1364] - Close tracing scope to stop excessive tracing
     * [PHOENIX-1365] - Make sequence salt buckets configurable
+    * [PHOENIX-1366] - ORDINAL_POSITION incorrect for multi-tenant table over 
tenant-specific connection
     * [PHOENIX-1368] - Persist link from VIEW back to its child VIEW
     * [PHOENIX-1369] - Add back encode/decode methods as deprecated
     * [PHOENIX-1370] - Allow query timeout to differ from RPC timeout
+    * [PHOENIX-1376] - java.lang.NullPointerException occurs in JDBC driver
+    * [PHOENIX-1379] - Wrong MultiIndexWriteFailureException when recovering 
local index table
+    * [PHOENIX-1381] - NPE in CellUtil.matchingFamily() for IndexedKeyValue
+    * [PHOENIX-1382] - Phoenix 4.2 RC Issue
+    * [PHOENIX-1385] - Adding, dropping and adding columns fails with NPE
+    * [PHOENIX-1386] - ANY function only works with absolute value and doesn't 
work with other parameters  
+    * [PHOENIX-1390] - Stats not updated on client after major compaction
+    * [PHOENIX-1391] - Remove obsolete hint
 
 ** Improvement
     * [PHOENIX-619] - Support DELETE over table with immutable index when 
possible

http://git-wip-us.apache.org/repos/asf/phoenix/blob/5614dbd5/phoenix-core/src/it/java/org/apache/phoenix/trace/TracingTestUtil.java
----------------------------------------------------------------------
diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/trace/TracingTestUtil.java 
b/phoenix-core/src/it/java/org/apache/phoenix/trace/TracingTestUtil.java
index d502175..91c9962 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/trace/TracingTestUtil.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/trace/TracingTestUtil.java
@@ -1,3 +1,20 @@
+/**
+ * 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.phoenix.trace;
 
 import org.apache.hadoop.metrics2.MetricsSink;

Reply via email to