svn commit: r835787 - /ofbiz/trunk/framework/entity/src/org/ofbiz/entity/sql/Parser.jj

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r835787 - /ofbiz/trunk/framework/entity/src/org/ofbiz/entity/sql/Parser.jj

doogie-3
Author: doogie
Date: Fri Nov 13 09:21:41 2009
New Revision: 835787

URL: http://svn.apache.org/viewvc?rev=835787&view=rev
Log:
Add <TYPE> to NamePart(); the other words should also be added here.

Modified:
    ofbiz/trunk/framework/entity/src/org/ofbiz/entity/sql/Parser.jj

Modified: ofbiz/trunk/framework/entity/src/org/ofbiz/entity/sql/Parser.jj
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/sql/Parser.jj?rev=835787&r1=835786&r2=835787&view=diff
==============================================================================
--- ofbiz/trunk/framework/entity/src/org/ofbiz/entity/sql/Parser.jj (original)
+++ ofbiz/trunk/framework/entity/src/org/ofbiz/entity/sql/Parser.jj Fri Nov 13 09:21:41 2009
@@ -308,6 +308,7 @@
 {}
 {
  <NAME> { return getToken(0).image; }
+| <TYPE> { return getToken(0).image; }
 }
 
 private String DQuoted():