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
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.
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.