Skip to content
This repository was archived by the owner on Jan 3, 2021. It is now read-only.
This repository was archived by the owner on Jan 3, 2021. It is now read-only.

Queries with "with" statements don't return output #49

Description

@vladserkoff

Hi! I am on the latest version of vcli with vertica 7.2.1 and here's what happens when using "with" statements:

db=> select * from (select 'test' as test) as test;
+--------+
| test   |
|--------|
| test   |
+--------+
(1 row)
Time: 0.162s
db=> with test as (select 'test' as test) select * from test;
Time: 0.328s

Essentially the same query, differently structured, but vcli fails to return anything, while vsql and pgcli don't.

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