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 ogasync/src/org/labkey/ogasync/OGASyncRunner.java
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ public void doMergeGrantProjects(User u, Container c, TableInfo sourceTable, DbS
public void updateStats(DbSchema targetSchema) throws SQLException
{
TableInfo aliases = DbSchema.get("onprc_billing").getTable("aliases");
String analyze = targetSchema.getSqlDialect().getAnalyzeCommandForTable(aliases.getSelectName());
new SqlExecutor(aliases.getSchema()).execute(new SQLFragment(analyze));
SQLFragment analyze = targetSchema.getSqlDialect().getAnalyzeCommandForTable(aliases.getSelectName());
new SqlExecutor(aliases.getSchema()).execute(analyze);
}

public void doMergeOtherAccounts(User u, Container c, TableInfo sourceTable, DbSchema targetSchema) throws SQLException
Expand Down
Loading