[teiid-commits] teiid SVN: r3102 - in trunk/engine/src/main: resources/org/teiid/query and 1 other directory.

teiid-commits at lists.jboss.org teiid-commits at lists.jboss.org
Tue Apr 19 15:46:21 EDT 2011


Author: shawkins
Date: 2011-04-19 15:46:20 -0400 (Tue, 19 Apr 2011)
New Revision: 3102

Modified:
   trunk/engine/src/main/java/org/teiid/query/function/source/XMLSystemFunctions.java
   trunk/engine/src/main/resources/org/teiid/query/i18n.properties
Log:
removing an unused exception and fixing a message that was backwards

Modified: trunk/engine/src/main/java/org/teiid/query/function/source/XMLSystemFunctions.java
===================================================================
--- trunk/engine/src/main/java/org/teiid/query/function/source/XMLSystemFunctions.java	2011-04-19 17:42:06 UTC (rev 3101)
+++ trunk/engine/src/main/java/org/teiid/query/function/source/XMLSystemFunctions.java	2011-04-19 19:46:20 UTC (rev 3102)
@@ -364,7 +364,7 @@
 		eventWriter.add(eventFactory.createEndElement("", null, name)); //$NON-NLS-1$
 	}
 	
-	public static XMLType xmlConcat(CommandContext context, final XMLType xml, final Object... other) throws TeiidComponentException, TeiidProcessingException {
+	public static XMLType xmlConcat(CommandContext context, final XMLType xml, final Object... other) throws TeiidProcessingException {
 		//determine if there is just a single xml value and return it
 		XMLType singleValue = xml;
 		XMLType.Type type = null;

Modified: trunk/engine/src/main/resources/org/teiid/query/i18n.properties
===================================================================
--- trunk/engine/src/main/resources/org/teiid/query/i18n.properties	2011-04-19 17:42:06 UTC (rev 3101)
+++ trunk/engine/src/main/resources/org/teiid/query/i18n.properties	2011-04-19 19:46:20 UTC (rev 3102)
@@ -852,8 +852,8 @@
 # services (003)
 
 Request.Invalid_character_in_query=Bind variables (represented as "?") were found but are allowed only in prepared or callable statements.
-Request.no_result_set=The query does not return an update count.
-Request.result_set=The query does not return a result set.
+Request.no_result_set=The query does not return a result set.
+Request.result_set=The query does not return an update count.
 
 ProcessWorker.wrongdata=Wrong type of data found or no data found; expecting streamable object from the buffer manager.
 ProcessWorker.LobError=An error occurred during streaming of Lob Chunks to Client.



More information about the teiid-commits mailing list