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
When running bin/load_map_data.pl I get an error
DBD::Pg::db selectrow_array failed: ERROR: cross-database references are not implemented: "sgn.sgn.map_map_id_seq"
LINE 1: SELECT currval('sgn.sgn.map_map_id_seq')
at /home/production/cxgn/cxgn-corelibs/lib/CXGN/DB/Connection.pm line 71, line 1
The error can be fixed by the following changing
my ($id) = $self->selectrow_array("SELECT currval('$schema.$seq')")
to
my ($id) = $self->selectrow_array("SELECT currval('$seq')")
The text was updated successfully, but these errors were encountered:
When running bin/load_map_data.pl I get an error
DBD::Pg::db selectrow_array failed: ERROR: cross-database references are not implemented: "sgn.sgn.map_map_id_seq"
LINE 1: SELECT currval('sgn.sgn.map_map_id_seq')
at /home/production/cxgn/cxgn-corelibs/lib/CXGN/DB/Connection.pm line 71, line 1
The error can be fixed by the following changing
my ($id) = $self->selectrow_array("SELECT currval('$schema.$seq')")
to
my ($id) = $self->selectrow_array("SELECT currval('$seq')")
The text was updated successfully, but these errors were encountered: