Skip to content

Commit

Permalink
Update invoke_purchase_propensity_training_preparation.sqlx
Browse files Browse the repository at this point in the history
  • Loading branch information
chmstimoteo authored Dec 4, 2024
1 parent fb3aac8 commit d55624c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ IF churners > 0 THEN
SET train_start_date = min_date;
SET train_end_date = max_date;
ELSE
SET train_start_date = DATE '2000-01-01';
SET train_end_date = DATE '2024-12-01';
SET train_start_date = DATE_SUB(CURRENT_DATE(), INTERVAL 3 YEAR);
SET train_end_date = DATE_SUB(CURRENT_DATE(), INTERVAL 5 DAY);
END IF;

-- Finally, the script calls a stored procedure, passing the adjusted training dates and split numbers as arguments. This stored procedure
Expand Down

0 comments on commit d55624c

Please sign in to comment.