You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by ol...@apache.org on 2009/10/14 23:56:58 UTC

svn commit: r825305 - /hadoop/pig/trunk/test/findbugsExcludeFile.xml

Author: olga
Date: Wed Oct 14 21:56:58 2009
New Revision: 825305

URL: http://svn.apache.org/viewvc?rev=825305&view=rev
Log:
FINDBUGS: exclude CN_IDIOM_NO_SUPER_CALL (olgan)

Modified:
    hadoop/pig/trunk/test/findbugsExcludeFile.xml

Modified: hadoop/pig/trunk/test/findbugsExcludeFile.xml
URL: http://svn.apache.org/viewvc/hadoop/pig/trunk/test/findbugsExcludeFile.xml?rev=825305&r1=825304&r2=825305&view=diff
==============================================================================
--- hadoop/pig/trunk/test/findbugsExcludeFile.xml (original)
+++ hadoop/pig/trunk/test/findbugsExcludeFile.xml Wed Oct 14 21:56:58 2009
@@ -1,4 +1,5 @@
 <FindBugsFilter>
+    <!-- Exclude generated code -->
     <Match>
         <Package name="org.apache.pig.data.parser.*" />
     </Match>
@@ -35,4 +36,37 @@
     <Match>
         <Class name="org.apache.pig.tools.parameters.ParserException" />
     </Match>
+
+    <!-- Exclude CN_IDIOM_NO_SUPER_CALL issue in logical and physical plans for now-->
+    <Match>
+        <Package name="org.apache.pig.backend.hadoop.executionengine.physicalLayer.expressionOperators.*" />
+        <Bug pattern="CN_IDIOM_NO_SUPER_CALL" />
+    </Match>
+    <Match>
+        <Package name="org.apache.pig.backend.hadoop.executionengine.physicalLayer.relationalOperators.*" />
+        <Bug pattern="CN_IDIOM_NO_SUPER_CALL" />
+    </Match>
+    <Match>
+        <Class name="org.apache.pig.impl.logicalLayer.LogicalPlan" />
+        <Bug pattern="CN_IDIOM_NO_SUPER_CALL" />
+    </Match>
+    <Match>
+        <Class name="org.apache.pig.backend.hadoop.executionengine.physicalLayer.plans.PhysicalPlan" />
+        <Bug pattern="CN_IDIOM_NO_SUPER_CALL" />
+    </Match>
+
+    <!-- Exclude CN_IDIOM_NO_SUPER_CALL - no parent class -->
+    <Match>
+        <Class name="org.apache.pig.FuncSpec" />
+        <Bug pattern="CN_IDIOM_NO_SUPER_CALL" />
+    </Match>
+    <Match>
+        <Class name="org.apache.pig.impl.logicalLayer.schema.Schema" />
+        <Bug pattern="CN_IDIOM_NO_SUPER_CALL" />
+    </Match>
+    <Match>
+        <Class name="org.apache.pig.impl.logicalLayer.schema.Schema$FieldSchema" />
+        <Bug pattern="CN_IDIOM_NO_SUPER_CALL" />
+    </Match>
+
 </FindBugsFilter>