Skip to content

Commit 8e63149

Browse files
committed
Fix CI
1 parent f7461a6 commit 8e63149

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

datafusion-examples/examples/extension_types/temperature.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ impl TemperatureExtensionType {
166166
storage_type: storage_type.clone(),
167167
temperature_unit,
168168
};
169-
result.supports_data_type(&storage_type)?; // Validate the storage type
169+
result.supports_data_type(storage_type)?; // Validate the storage type
170170
Ok(result)
171171
}
172172
}

datafusion/expr/src/registry.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,8 @@ pub type ExtensionTypeRegistrationRef = Arc<dyn ExtensionTypeRegistration>;
246246
/// field and create the corresponding [`DFExtensionType`] instance with the correct `n` set.
247247
///
248248
/// The [`DefaultExtensionTypeRegistration`] provides a convenient way of creating registrations.
249+
///
250+
/// [`DFExtensionType`]: datafusion_common::types::DFExtensionType
249251
pub trait ExtensionTypeRegistration: Debug + Send + Sync {
250252
/// The name of the extension type.
251253
///

0 commit comments

Comments
 (0)