You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2014/11/04 14:01:49 UTC

svn commit: r1636570 - /manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/interfaces/JoinClause.java

Author: kwright
Date: Tue Nov  4 13:01:48 2014
New Revision: 1636570

URL: http://svn.apache.org/r1636570
Log:
Fix a bug I introduced. Part of CONNECTORS-1090.

Modified:
    manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/interfaces/JoinClause.java

Modified: manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/interfaces/JoinClause.java
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/interfaces/JoinClause.java?rev=1636570&r1=1636569&r2=1636570&view=diff
==============================================================================
--- manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/interfaces/JoinClause.java (original)
+++ manifoldcf/trunk/framework/core/src/main/java/org/apache/manifoldcf/core/interfaces/JoinClause.java Tue Nov  4 13:01:48 2014
@@ -38,7 +38,7 @@ public class JoinClause implements Claus
   {
     this.columnName = columnName;
     this.joinColumnName = joinColumnName;
-    this.operation = "=";
+    this.operation = operation;
   }
   
   /** Get the column name */