[teiid-commits] teiid SVN: r506 - trunk/documentation/reference/src/main/docbook/en-US/content.

teiid-commits at lists.jboss.org teiid-commits at lists.jboss.org
Thu Feb 26 10:31:30 EST 2009


Author: shawkins
Date: 2009-02-26 10:31:30 -0500 (Thu, 26 Feb 2009)
New Revision: 506

Modified:
   trunk/documentation/reference/src/main/docbook/en-US/content/scalar_functions.xml
Log:
TEIID-382 adding missing functions

Modified: trunk/documentation/reference/src/main/docbook/en-US/content/scalar_functions.xml
===================================================================
--- trunk/documentation/reference/src/main/docbook/en-US/content/scalar_functions.xml	2009-02-26 03:19:01 UTC (rev 505)
+++ trunk/documentation/reference/src/main/docbook/en-US/content/scalar_functions.xml	2009-02-26 15:31:30 UTC (rev 506)
@@ -448,6 +448,50 @@
               <para>x in {double}, return type is double</para>
             </entry>
           </row>
+          <row>
+            <entry>
+              <para>BITAND(x, y)</para>
+            </entry>
+            <entry>
+              <para>Bitwise AND of x and y</para>
+            </entry>
+            <entry>
+              <para>x, y in {integer}, return type is integer</para>
+            </entry>
+          </row>
+          <row>
+            <entry>
+              <para>BITOR(x, y)</para>
+            </entry>
+            <entry>
+              <para>Bitwise OR of x and y</para>
+            </entry>
+            <entry>
+              <para>x, y in {integer}, return type is integer</para>
+            </entry>
+          </row>
+          <row>
+            <entry>
+              <para>BITXOR(x, y)</para>
+            </entry>
+            <entry>
+              <para>Bitwise XOR of x and y</para>
+            </entry>
+            <entry>
+              <para>x, y in {integer}, return type is integer</para>
+            </entry>
+          </row>
+          <row>
+            <entry>
+              <para>BITNOT(x)</para>
+            </entry>
+            <entry>
+              <para>Bitwise NOT of x</para>
+            </entry>
+            <entry>
+              <para>x in {integer}, return type is integer</para>
+            </entry>
+          </row>
         </tbody>
       </tgroup>
     </informaltable>
@@ -1168,6 +1212,17 @@
           </row>
           <row>
             <entry>
+              <para>QUARTER(x)</para>
+            </entry>
+            <entry>
+              <para>Return quarter</para>
+            </entry>
+            <entry>
+              <para>x in {date, timestamp}, returns integer</para>
+            </entry>
+          </row>
+          <row>
+            <entry>
               <para>PARSEDATE(x, y)</para>
             </entry>
             <entry>




More information about the teiid-commits mailing list