Commit 68ce1b2
authored
Update BaseBuilder.php
Is it breaks anything or will repair having('MAX(sth)', null, false)
before:
```
SELECT `aht_cur_id_2` `cur_id_2`, `aht_cur_id_1` `cur_id_1`, `aht_rate` `rate`
FROM `t_api_trading_trades`
GROUP BY `aht_cur_id_2`, `aht_cur_id_1`
HAVING MAX(aht_api_trade_id) = NULL
```
now:
```
SELECT `aht_cur_id_2` `cur_id_2`, `aht_cur_id_1` `cur_id_1`, `aht_rate` `rate`
FROM `t_api_trading_trades`
GROUP BY `aht_cur_id_2`, `aht_cur_id_1`
HAVING MAX(aht_api_trade_id)
```1 parent d494df9 commit 68ce1b2
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
706 | 706 | | |
707 | 707 | | |
708 | 708 | | |
709 | | - | |
| 709 | + | |
710 | 710 | | |
711 | 711 | | |
712 | 712 | | |
| |||
0 commit comments