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
Discovered. The JDBC extractor was fetching the column name using getColumnName instead of getColumnLabel. The latter uses the alias, if present, or the column name, if not.
This fix will be available in the next 2.2.18
OrientDB Version: 2.2.17
Java Version: 1.8.0_111
OS: debian 8
Expected behavior
I am importing tables from mysql to orientdb thanks to oetl.sh.
I use the following setup :
Actual behavior
In orientdb studio, I query members :
SELECT FROM Member
the result returns members with {firstname, name} fields and not {firstname,lastname}
If I look at Member class, the fields are well {firstname,lastname} though.
It looks like the fields are not the same in the class and in the data.
Steps to reproduce
see before
The text was updated successfully, but these errors were encountered: