Page 1 of 1

cnt_f_donk_def_opp_action_raise

PostPosted: Sun Dec 02, 2012 6:48 pm
by Stratocaster
Hi,
Number of times player raised a donk bet on the flop:
Code: Select all
sum(if[lookup_actions_p.action LIKE '%R' AND cash_hand_player_statistics.amt_f_bet_facing > 0
AND NOT (cash_hand_player_statistics.flg_f_open_opp) AND substring(lookup_actions_f.action from 1 for 1) = 'R', 1, 0])

I understand most of it but what flg_f_open_oop is doing here ?

Re: cnt_f_donk_def_opp_action_raise

PostPosted: Mon Dec 03, 2012 11:43 am
by kraada
It's making sure that you didn't have a chance to bet first - otherwise you could have situations where you checked and faced a bet included (in multieway pots).

highfalutin