Skip to content

The new version is not compatible with Oracle #908

@apalacio9502

Description

@apalacio9502

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions