AddGroupingPolicy adds a grouping policy within the transaction.
(params ...interface{})
| 303 | |
| 304 | // AddGroupingPolicy adds a grouping policy within the transaction. |
| 305 | func (tx *Transaction) AddGroupingPolicy(params ...interface{}) (bool, error) { |
| 306 | return tx.AddNamedGroupingPolicy("g", params...) |
| 307 | } |
| 308 | |
| 309 | // AddNamedGroupingPolicy adds a named grouping policy within the transaction. |
| 310 | func (tx *Transaction) AddNamedGroupingPolicy(ptype string, params ...interface{}) (bool, error) { |
nothing calls this directly
no test coverage detected