Skip to content
Closed
Show file tree
Hide file tree
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
Next Next commit
Add golden files
  • Loading branch information
chenghao-intel committed Oct 29, 2014
commit 683d3fdcbfc06de9c73c3fc8d878899851beb3c0
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sort_array(array(obj1, obj2,...)) - Sorts the input array in ascending order according to the natural ordering of the array elements.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
sort_array(array(obj1, obj2,...)) - Sorts the input array in ascending order according to the natural ordering of the array elements.
Example:
> SELECT sort_array(array('b', 'd', 'c', 'a')) FROM src LIMIT 1;
'a', 'b', 'c', 'd'