From: <sco...@us...> - 2011-09-19 18:45:51
|
Revision: 25187 http://gmod.svn.sourceforge.net/gmod/?rev=25187&view=rev Author: scottcain Date: 2011-09-19 18:45:46 +0000 (Mon, 19 Sep 2011) Log Message: ----------- fixing a bug caught by Rob Syme. Modified Paths: -------------- schema/trunk/chado/modules/default_schema.sql schema/trunk/chado/modules/general/functions/general-loading.plpgsql Modified: schema/trunk/chado/modules/default_schema.sql =================================================================== --- schema/trunk/chado/modules/default_schema.sql 2011-09-16 20:54:47 UTC (rev 25186) +++ schema/trunk/chado/modules/default_schema.sql 2011-09-19 18:45:46 UTC (rev 25187) @@ -96,7 +96,7 @@ RETURNS INT AS 'DECLARE v_dbname ALIAS FOR $1; - v_accession ALIAS FOR $1; + v_accession ALIAS FOR $2; v_db_id INTEGER; v_dbxref_id INTEGER; Modified: schema/trunk/chado/modules/general/functions/general-loading.plpgsql =================================================================== --- schema/trunk/chado/modules/general/functions/general-loading.plpgsql 2011-09-16 20:54:47 UTC (rev 25186) +++ schema/trunk/chado/modules/general/functions/general-loading.plpgsql 2011-09-19 18:45:46 UTC (rev 25187) @@ -24,7 +24,7 @@ RETURNS INT AS 'DECLARE v_dbname ALIAS FOR $1; - v_accession ALIAS FOR $1; + v_accession ALIAS FOR $2; v_db_id INTEGER; v_dbxref_id INTEGER; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |