-
Notifications
You must be signed in to change notification settings - Fork 4k
ARROW-8471: [C++][Integration] Represent 64 bit integers as strings #7292
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
e14f60a
47ce0f8
2e97dff
dbdd293
bf37227
1ec2517
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -646,6 +646,14 @@ template <typename T, typename R = void> | |
| using enable_if_physical_unsigned_integer = | ||
| enable_if_t<is_physical_unsigned_integer_type<T>::value, R>; | ||
|
|
||
| template <typename T> | ||
| using is_physical_integer_type = | ||
| std::integral_constant<bool, is_physical_unsigned_integer_type<T>::value || | ||
| is_physical_signed_integer_type<T>::value>; | ||
|
||
|
|
||
| template <typename T, typename R = void> | ||
| using enable_if_physical_integer = enable_if_t<is_physical_integer_type<T>::value, R>; | ||
|
|
||
| // Like is_floating_type but excluding half-floats which don't have a | ||
| // float-like c type. | ||
| template <typename T> | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -26,7 +26,8 @@ class GoTester(Tester): | |
| CONSUMER = True | ||
|
|
||
| # FIXME(sbinet): revisit for Go modules | ||
| GOPATH = os.getenv('GOPATH', '~/go') | ||
| HOME = os.getenv('HOME', '~') | ||
|
||
| GOPATH = os.getenv('GOPATH', os.path.join(HOME, 'go')) | ||
| GOBIN = os.environ.get('GOBIN', os.path.join(GOPATH, 'bin')) | ||
|
|
||
| GO_INTEGRATION_EXE = os.path.join(GOBIN, 'arrow-json-integration-test') | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.