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
CREATE TABLE dvt_test.dvt_reserved_words
( id number(5) primary key
, "DATE" date
, "COLUMN" NUMBER(1)
, "SELECT" NUMBER(1)
);
Test command:
$ data-validation validate column -sc ora -tc ora --tables-list=dvt_test.dvt_reserved_words --count="*"
...
cursor.execute(statement, parameters)
sqlalchemy.exc.DatabaseError: (cx_Oracle.DatabaseError) ORA-01747: invalid user.table.column, table.column, or column specification
[SQL: SELECT count(*) AS count, count(t0.id) AS count__id, count(t0."DATE") AS count__date, count(t0.column) AS count__column, count(t0."SELECT") AS count__select
FROM dvt_test.dvt_reserved_words t0]
Notice above that SELECT and DATE have been quoted but COLUMN has not.
The text was updated successfully, but these errors were encountered:
Test table:
Test command:
Notice above that SELECT and DATE have been quoted but COLUMN has not.
The text was updated successfully, but these errors were encountered: