https://github.com/amoeba/arrow-declaration-to-examples
https://github.com/amoeba/arrow-declaration-to-examples
apache-arrow
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/amoeba/arrow-declaration-to-examples
- Owner: amoeba
- License: apache-2.0
- Created: 2022-11-19T02:09:42.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-12-17T19:47:00.000Z (about 1 year ago)
- Last Synced: 2025-02-15T19:17:29.829Z (12 months ago)
- Topics: apache-arrow
- Language: C++
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# arrow-declaration-to-examples
TODO
Currently just an example of using `StartAndCollect`.
## Running
### Pre-requisites
- `pkg-config` (`brew install pkg-config`)
- A >=C++17 compiler (e.g., clang 14)
- Arrow C++ headers (`brew install apache-arrow`)
## Compile
A `Makefile` is provided to make compiling both examples a single command:
```sh
make
```
## Run
```
./example
```
## Output
The above should produce:
```
a: int32
b: bool
----
a:
[
[
0,
4
],
[
5,
6,
7
],
[
8,
9,
10
]
]
b:
[
[
false,
true
],
[
true,
false,
true
],
[
false,
true,
false
]
]
```