Skip to content

Commit

Permalink
base 64 -> base64
Browse files Browse the repository at this point in the history
  • Loading branch information
chenghao-intel committed Jul 3, 2015
1 parent 9d6f9f4 commit 78dee7d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sql/core/src/main/scala/org/apache/spark/sql/functions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -1574,31 +1574,31 @@ object functions {
def ascii(columnName: String): Column = ascii(Column(columnName))

/**
* Computes the specified value from binary to a base 64 string.
* Computes the specified value from binary to a base64 string.
*
* @group string_funcs
* @since 1.5.0
*/
def base64(e: Column): Column = Base64(e.expr)

/**
* Computes the specified column from binary to a base 64 string.
* Computes the specified column from binary to a base64 string.
*
* @group string_funcs
* @since 1.5.0
*/
def base64(columnName: String): Column = base64(Column(columnName))

/**
* Computes the specified value from a base 64 string to binary.
* Computes the specified value from a base64 string to binary.
*
* @group string_funcs
* @since 1.5.0
*/
def unbase64(e: Column): Column = UnBase64(e.expr)

/**
* Computes the specified column from a base 64 string to binary.
* Computes the specified column from a base64 string to binary.
*
* @group string_funcs
* @since 1.5.0
Expand Down

0 comments on commit 78dee7d

Please sign in to comment.