Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions protein/api-src/org/labkey/api/protein/uniprot/uniprot.java
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ public int insertIdentifiers(ParseContext context, Connection conn) throws SQLEx
executeUpdate("create index iIdenttype on " + _iTableName + "(IdentType)", conn);
executeUpdate("create index iSpeciesGenusHash on " + _iTableName + "(Species, Genus, Hash)", conn);

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

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

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

// Insert ident types
executeUpdate(_insertAnnotTypesCommand, conn, "InsertAnnotTypes");
Expand Down
Loading