Closed XuHuaiyu closed 3 years ago
Before this commit, select count(*) from t will be restored to select count(1) from t. After this commit, select count(*) from t can be restored to select count(*) from t correctly
select count(*) from t
select count(1) from t
Tests
Code changes
Side effects
N/A
Related changes
What problem does this PR solve?
Before this commit,
select count(*) from t
will be restored toselect count(1) from t
. After this commit,select count(*) from t
can be restored toselect count(*) from t
correctlyWhat is changed and how it works?
Check List
Tests
Code changes
Side effects
N/A
Related changes