Tag: cws_src680_qiq User: fs Date: 06/05/15 07:43:08 Modified: /dba/connectivity/source/parse/ sqlnode.cxx
Log: during #i51143#: parse 'as' as 'AS', not as empty string - this is much better understandable to the user File Changes: Directory: /dba/connectivity/source/parse/ ========================================== File [changed]: sqlnode.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/parse/sqlnode.cxx?r1=1.38.62.4&r2=1.38.62.5 Delta lines: +7 -2 ------------------- --- sqlnode.cxx 15 May 2006 13:46:19 -0000 1.38.62.4 +++ sqlnode.cxx 15 May 2006 14:43:05 -0000 1.38.62.5 @@ -4,9 +4,9 @@ * * $RCSfile: sqlnode.cxx,v $ * - * $Revision: 1.38.62.4 $ + * $Revision: 1.38.62.5 $ * - * last change: $Author: fs $ $Date: 2006/05/15 13:46:19 $ + * last change: $Author: fs $ $Date: 2006/05/15 14:43:05 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -413,6 +413,11 @@ // table name - might be a query name case table_name: bHandled = tableNameNodeToStr( rString, rParam ); + break; + + case as: + rString += ::rtl::OUString::createFromAscii( " AS" ); + bHandled = true; break; case like_predicate: --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
