Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
base 64 -> base64
  • Loading branch information
chenghao-intel committed Jul 3, 2015
commit 78dee7d9ca2e9896d82af59ba0e4130415f4559c
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