Skip to content

Commit

Permalink
apacheGH-38285: [Go] Slight deps and docs update (apache#38284)
Browse files Browse the repository at this point in the history
Making sure the documentation that shows up on pkg.go.dev will show that the package is compatible with go1.19+

slight patch/minor version updates of some dependencies along with a documentation update in `doc.go`.
* Closes: apache#38285

Authored-by: Matt Topol <[email protected]>
Signed-off-by: Raúl Cumplido <[email protected]>
  • Loading branch information
zeroshade authored and loicalleyne committed Nov 13, 2023
1 parent f85d763 commit fd88b68
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions go/arrow/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,15 @@ language-independent columnar memory format for flat and hierarchical data, orga
operations on modern hardware. It also provides computational libraries and zero-copy streaming
messaging and inter-process communication.
Basics
# Basics
The fundamental data structure in Arrow is an Array, which holds a sequence of values of the same type. An array
consists of memory holding the data and an additional validity bitmap that indicates if the corresponding entry in the
array is valid (not null). If the array has no null entries, it is possible to omit this bitmap.
Requirements
# Requirements
Despite the go.mod stating go1.18, everything except for the compute package
is able to be built with go1.17 (and most is also compatible with go1.16).
Despite the go.mod stating go1.20, everything is able to be built with go1.19 or higher.
To build with tinygo include the noasm build tag.
*/
Expand Down

0 comments on commit fd88b68

Please sign in to comment.