preparac:
I just took another look at the columns for limp/fold and it does look like there may have been an error there.
Look at cnt_limp_fold_rz, do you have this:
- Code: Select all
sum( if[tourney_holdem_hand_player_statistics.flg_p_limp AND substring(lookup_actions_p.action from 2 for 1)='F
(tourney_holdem_hand_player_detail.amt_before / ( tourney_holdem_blinds.amt_bb + tourney_holdem_blinds.amt_sb + (tourney_holdem_hand_summary.cnt_players * tourney_holdem_hand_player_detail.amt_ante)) <= 5)
', 1, 0] )
If so, you need to edit it so it looks like this:
- Code: Select all
sum( if[tourney_holdem_hand_player_statistics.flg_p_limp AND substring(lookup_actions_p.action from 2 for 1)='F' and
(tourney_holdem_hand_player_detail.amt_before / ( tourney_holdem_blinds.amt_bb + tourney_holdem_blinds.amt_sb + (tourney_holdem_hand_summary.cnt_players * tourney_holdem_hand_player_detail.amt_ante)) <= 5)
, 1, 0] )
(Put the ' on the other side of the F, add an 'and', remove the ' before the ,)
I'm not sure how it got like that, but it's obviously checking for the string to match that . . . which is never going to happen, hence a value of 0. You'll need to recache after the fix, of course, and anybody else who downloaded these stats with the HUD should make these fixes as well to all cnt_limp_fold_Xz columns. My apologies for the typo.