Hello,
The modification in this commit 8dd7639 is very interesting, however in the case of Oracle it is not fully functional.
In Oracle, if I want to select all the columns and add a new one, I must write the query in the following way
SELECT q01.*, COLUM_1+COLUM_2 AS VALUE FROM TEST q01;
And not as dbplyr is currently doing, which is this way.
SELECT *, COLUM_1+COLUM_2 AS VALUE FROM TEST q01;
The big difference is that the * is preceded by the name that the table is being called, which in this case is q01
Thank you.