You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chemistry.apache.org by je...@apache.org on 2011/03/18 14:18:50 UTC

svn commit: r1082909 - /chemistry/site/trunk/content/java/how-to/how-to-process-query.mdtext

Author: jens
Date: Fri Mar 18 13:18:50 2011
New Revision: 1082909

URL: http://svn.apache.org/viewvc?rev=1082909&view=rev
Log:
Trying to debug failing page

Modified:
    chemistry/site/trunk/content/java/how-to/how-to-process-query.mdtext

Modified: chemistry/site/trunk/content/java/how-to/how-to-process-query.mdtext
URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/how-to/how-to-process-query.mdtext?rev=1082909&r1=1082908&r2=1082909&view=diff
==============================================================================
--- chemistry/site/trunk/content/java/how-to/how-to-process-query.mdtext (original)
+++ chemistry/site/trunk/content/java/how-to/how-to-process-query.mdtext Fri Mar 18 13:18:50 2011
@@ -151,13 +151,10 @@ implementation:
         else if (sel instanceof ColumnReference)
            colRef = (ColumnReference) sel;
     
-    
        TypeDefinition td = colRef.getTypeDefinition();
        PropertyDefinition pd =
            td.getPropertyDefinitions().get(colRef.getPropertyId());
         
-       // … process the statement, for example append it to a WHERE
-       // in your generated SQL statement.
     }