Skip to content

Commit 4e6293f

Browse files
Merge 25.11 to 25.12
2 parents 06f9121 + 444e185 commit 4e6293f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

protein/api-src/org/labkey/api/protein/uniprot/uniprot.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,7 @@ public int insertIdentifiers(ParseContext context, Connection conn) throws SQLEx
738738
executeUpdate("create index iIdenttype on " + _iTableName + "(IdentType)", conn);
739739
executeUpdate("create index iSpeciesGenusHash on " + _iTableName + "(Species, Genus, Hash)", conn);
740740

741-
executeUpdate(_dialect.getAnalyzeCommandForTable(_iTableName), conn, "Analyzing " + _iTableName);
741+
executeUpdate(_dialect.getAnalyzeCommandForTable(_iTableName).getSQL(), conn, "Analyzing " + _iTableName);
742742

743743
// Insert ident types
744744
executeUpdate(_insertIdentTypesCommand, conn, "InsertIdentTypes");
@@ -857,7 +857,7 @@ public int insertAnnotations(ParseContext context, Connection conn) throws SQLEx
857857
executeUpdate("create index aAnnotType on " + _aTableName + "(AnnotType)", conn);
858858
executeUpdate("create index aHashGenusSpecies on " + _aTableName + "(Hash, Genus, Species)", conn);
859859

860-
executeUpdate(_dialect.getAnalyzeCommandForTable(_aTableName), conn, "Analyzing " + _aTableName);
860+
executeUpdate(_dialect.getAnalyzeCommandForTable(_aTableName).getSQL(), conn, "Analyzing " + _aTableName);
861861

862862
// Insert ident types
863863
executeUpdate(_insertAnnotTypesCommand, conn, "InsertAnnotTypes");

0 commit comments

Comments
 (0)