You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 3, 2021. It is now read-only.
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.
The text was updated successfully, but these errors were encountered:
Hi! I am on the latest version of vcli with vertica 7.2.1 and here's what happens when using "with" statements:
Essentially the same query, differently structured, but vcli fails to return anything, while vsql and pgcli don't.
The text was updated successfully, but these errors were encountered: