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
Error appears to be due to the "_" prepended to the column name if the column name is either "name" or "con". In this specific case dim_cell.name gets prepended to form "_name".
--------------+
| Table | Name | Type | Foreign Keys | Reference Keys |
+------------------+------+---------+--------------+----------------+
| dim_cell | name | varchar | | |
+------------------+------+---------+--------------+----------------+
----> db = DB(username="user", password="pw", hostname="hostname",port="5432",dbname="dbname", dbtype="postgres")
I put line 274 inside a try/except condition, to ignore the name column. This allows all other table/columns to be successfully brought into the db.py model. But by doing this you lose the option to refer to that column full stop. Including the loss of column reference using PANDAS representations or Ipython tab completion.
Error appears to be due to the "_" prepended to the column name if the column name is either "name" or "con". In this specific case dim_cell.name gets prepended to form "_name".
The text was updated successfully, but these errors were encountered: