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.
vcli prints whatever error message returned by the Vertica server, which is not very pretty:
localdev=> select title from movie order title;
Severity: ERROR, Message: Syntax error at or near "title", Sqlstate: 42601, Position: 31, Routine: base_yyerror, File: /scratch_a/release/30493/vbuild/vertica/Parser/scan.l, Line: 1014, SQL: u'select title from movie order title'
We should make it prettier at least like vsql (the official Vertica command line client):
localdev=> select title from movie order title;
ERROR 4856: Syntax error at or near "title" at character 31
LINE 1: select title from movie order title;
^
The text was updated successfully, but these errors were encountered:
vcli prints whatever error message returned by the Vertica server, which is not very pretty:
We should make it prettier at least like vsql (the official Vertica command line client):
The text was updated successfully, but these errors were encountered: