You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@turbine.apache.org by mi...@apache.org on 2001/07/03 16:34:18 UTC

cvs commit: jakarta-turbine/proposals/eric/statement BaseSql.java

mikeh       01/07/03 07:34:17

  Modified:    proposals/eric/statement BaseSql.java
  Log:
  added whitespace to several of the operators.  This helps
  the readability of the output while debugging.
  
  Revision  Changes    Path
  1.8       +8 -8      jakarta-turbine/proposals/eric/statement/BaseSql.java
  
  Index: BaseSql.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine/proposals/eric/statement/BaseSql.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- BaseSql.java	2001/06/27 15:59:45	1.7
  +++ BaseSql.java	2001/07/03 14:34:10	1.8
  @@ -137,14 +137,14 @@
       public static String HAVING          = " HAVING ";
       public static String ASC             = " ASC";
       public static String DESC            = " DESC";
  -    public static String OPEN_PAREN      = "(";
  -    public static String CLOSE_PAREN     = ")";
  -    public static String EQUALS          = "=";
  -    public static String NOT_EQUALS      = "!=";
  -    public static String GREATER_THAN    = ">";
  -    public static String LESS_THAN       = "<";
  -    public static String GREATER_EQUAL   = ">=";
  -    public static String LESS_EQUAL      = "<=";
  +    public static String OPEN_PAREN      = " (";
  +    public static String CLOSE_PAREN     = ") ";
  +    public static String EQUALS          = " = ";
  +    public static String NOT_EQUALS      = " != ";
  +    public static String GREATER_THAN    = " > ";
  +    public static String LESS_THAN       = " < ";
  +    public static String GREATER_EQUAL   = " >= ";
  +    public static String LESS_EQUAL      = " <= ";
       public static String IS_NULL         = " IS NULL";
       public static String IS_NOT_NULL     = " IS NOT NULL";
       public static String IN              = " IN ";
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: turbine-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: turbine-dev-help@jakarta.apache.org