Skip to content

Commit

Permalink
fix: template is only available on feature_capable qsv variants
Browse files Browse the repository at this point in the history
  • Loading branch information
jqnatividad committed Nov 2, 2024
1 parent 7917c25 commit 605940a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cmd/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ pub mod sqlp;
pub mod stats;
#[cfg(any(feature = "feature_capable", feature = "lite"))]
pub mod table;
#[cfg(any(feature = "feature_capable", feature = "datapusher_plus"))]
#[cfg(feature = "feature_capable")]
pub mod template;
#[cfg(all(feature = "to", feature = "feature_capable"))]
pub mod to;
Expand Down
2 changes: 1 addition & 1 deletion tests/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ mod test_sqlp;
mod test_stats;
#[cfg(any(feature = "feature_capable", feature = "lite"))]
mod test_table;
#[cfg(any(feature = "feature_capable", feature = "datapusher_plus"))]
#[cfg(feature = "feature_capable")]
mod test_template;
#[cfg(all(feature = "to", feature = "feature_capable"))]
mod test_to;
Expand Down

0 comments on commit 605940a

Please sign in to comment.