compiletime error in test fixed

This commit is contained in:
filipriec
2025-07-23 00:43:11 +02:00
parent 00ed0cf796
commit 8a6a584cf3
3 changed files with 8 additions and 23 deletions

View File

@@ -1,6 +1,6 @@
// tests/mod.rs
// pub mod tables_data;
pub mod tables_data;
pub mod common;
pub mod table_script;
// pub mod table_script;
// pub mod table_definition;

View File

@@ -1,22 +1,7 @@
// tests/table_script/mod.rs
pub mod post_scripts_integration_tests;
// pub mod prohibited_types_test;
// pub mod type_safety_comprehensive_tests;
// pub mod mathematical_operations_tests;
// pub mod comprehensive_error_scenarios_tests;
// // tests/table_script/mod.rs
// mod post_scripts_tests;
// mod post_scripts_integration_tests;
// mod prohibited_types_test;
// mod type_safety_comprehensive_tests;
// mod mathematical_operations_tests;
// mod comprehensive_error_scenarios_tests;
// pub use post_scripts_tests::*;
// pub use post_scripts_integration_tests::*;
// pub use prohibited_types_test::*;
// pub use type_safety_comprehensive_tests::*;
// pub use mathematical_operations_tests::*;
// pub use comprehensive_error_scenarios_tests::*;
mod post_scripts_integration_tests;
mod prohibited_types_test;
mod type_safety_comprehensive_tests;
mod mathematical_operations_tests;
mod comprehensive_error_scenarios_tests;

View File

@@ -31,7 +31,7 @@ async fn discover_steel_decimal_output(
current_table: "test_table".to_string(),
schema_id: 1,
schema_name: "test_schema".to_string(),
row_data: input_data,
row_data: input_data.clone(),
db_pool: Arc::new(pool.clone()),
};