forked from apache/arrow
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
apacheGH-37179: [MATLAB] Add a test utility that creates a MATLAB `ta…
…ble` containing all supported types (apache#37191) ### Rationale for this change It would be helpful it we had a test utility that created a MATLAB `table` containing all the supported types. This would help avoid code duplication in our tests. ### What changes are included in this PR? 1. Added a new utility named `arrow.internal.test.tabular.createTableWithSupportedTypes()` 2. Updated `tRecordBatch.m` to use this utility. 3. Updated `tfeather.m` to use this utility. ### Are these changes tested? Yes. ### Are there any user-facing changes? No. * Closes: apache#37179 Authored-by: Sarah Gilmore <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
- Loading branch information
1 parent
7c8c2fb
commit 01a9f72
Showing
4 changed files
with
109 additions
and
108 deletions.
There are no files selected for viewing
54 changes: 54 additions & 0 deletions
54
matlab/src/matlab/+arrow/+internal/+test/+tabular/createTableWithSupportedTypes.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
%CREATETABLEWITHSUPPORTEDTYPES Creates a MATLAB table containing all the | ||
%MATLAB types that can be converted into arrow arrays. | ||
|
||
% Licensed to the Apache Software Foundation (ASF) under one or more | ||
% contributor license agreements. See the NOTICE file distributed with | ||
% this work for additional information regarding copyright ownership. | ||
% The ASF licenses this file to you under the Apache License, Version | ||
% 2.0 (the "License"); you may not use this file except in compliance | ||
% with the License. You may obtain a copy of the License at | ||
% | ||
% http://www.apache.org/licenses/LICENSE-2.0 | ||
% | ||
% Unless required by applicable law or agreed to in writing, software | ||
% distributed under the License is distributed on an "AS IS" BASIS, | ||
% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or | ||
% implied. See the License for the specific language governing | ||
% permissions and limitations under the License. | ||
|
||
function T = createTableWithSupportedTypes(opts) | ||
arguments | ||
opts.NumRows(1, 1) {mustBeFinite, mustBeNonnegative} = 3; | ||
end | ||
|
||
numRows = opts.NumRows; | ||
|
||
variableNames = ["uint8", ... | ||
"uint16", ... | ||
"uint32", ... | ||
"uint64", ... | ||
"int8", ... | ||
"int16", ... | ||
"int32", ... | ||
"int64", ... | ||
"logical", ... | ||
"single", ... | ||
"double", ... | ||
"string", ... | ||
"datetime"]; | ||
|
||
T = table(uint8 ((1:numRows)'), ... | ||
uint16 ((1:numRows)'), ... | ||
uint32 ((1:numRows)'), ... | ||
uint64 ((1:numRows)'), ... | ||
int8 ((1:numRows)'), ... | ||
int16 ((1:numRows)'), ... | ||
int32 ((1:numRows)'), ... | ||
int64 ((1:numRows)'), ... | ||
logical ((1:numRows)'), ... | ||
single ((1:numRows)'), ... | ||
double ((1:numRows)'), ... | ||
string ((1:numRows)'), ... | ||
datetime(2023, 6, 28) + days(0:numRows-1)', ... | ||
VariableNames=variableNames); | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.