Skip to content

Commit

Permalink
Update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sgilmore10 committed Oct 31, 2023
1 parent c3084d8 commit 53af478
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ function validateElement(obj, element)
for ii=1:numVars
var = element.(ii);

if ~istable(var) && ~iscolumn(var)
% In order to concatenate tables together later, require
% all non-tabular variables to be columnar or empty.
if ~istable(var) && (~iscolumn(var) || isempty(var))
id = "arrow:array:list:NonTabularVariablesMustBeColumnar";
msg = "Table variables must be columnar";
error(id, msg);
Expand Down

0 comments on commit 53af478

Please sign in to comment.