You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by GitBox <gi...@apache.org> on 2018/07/26 16:50:12 UTC

[GitHub] xccui commented on a change in pull request #6390: [FLINK-9915] Add TO_BASE64 function for table/sql API

xccui commented on a change in pull request #6390: [FLINK-9915] Add TO_BASE64 function for table/sql API
URL: https://github.com/apache/flink/pull/6390#discussion_r205524074
 
 

 ##########
 File path: docs/dev/table/tableApi.md
 ##########
 @@ -2474,17 +2474,30 @@ STRING.rpad(len INT, pad STRING)
         <p>Returns a string right-padded with the given pad string to a length of len characters. If the string is longer than len, the return value is shortened to len characters. E.g. "hi".rpad(4, '??') returns "hi??",  "hi".rpad(1, '??') returns "h".</p>
       </td>
     </tr>
+
     <tr>
       <td>
         {% highlight java %}
 STRING.fromBase64()
 {% endhighlight %}
       </td>
-
+      
       <td>
         <p>Returns the base string decoded with base64, if string is null, returns null. E.g. "aGVsbG8gd29ybGQ=".fromBase64() returns "hello world".</p>
       </td>
     </tr>
+    
+    <tr>
+      <td>
+        {% highlight java %}
 
 Review comment:
   Add the corresponding docs for scala.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services