Skip to content

Commit

Permalink
row_labels.is_null() actually refers to a method checking for a nul…
Browse files Browse the repository at this point in the history
…l pointer.
  • Loading branch information
dfalbel committed Feb 13, 2025
1 parent 45eef9d commit 570bc92
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/ark/src/data_explorer/r_data_explorer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ use harp::exec::RFunctionExt;
use harp::object::RObject;
use harp::r_symbol;
use harp::tbl_get_column;
use harp::utils::r_is_null;
use harp::TableInfo;
use harp::TableKind;
use itertools::Itertools;
Expand Down Expand Up @@ -897,7 +898,7 @@ impl RDataExplorer {
row_filters: self.row_filters.clone(),
column_filters: self.col_filters.clone(),
sort_keys: self.sort_keys.clone(),
has_row_labels: !row_names.is_null(),
has_row_labels: !r_is_null(row_names.sexp),
supported_features: SupportedFeatures {
get_column_profiles: GetColumnProfilesFeatures {
support_status: SupportStatus::Supported,
Expand Down

0 comments on commit 570bc92

Please sign in to comment.