Skip to content
This repository has been archived by the owner on Sep 15, 2022. It is now read-only.

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.pgadmin.org/trunk@4594 a7884b65-44f6-0310-8a51-81a127f17b15
  • Loading branch information
Andreas Pflug committed Oct 23, 2005
1 parent 8eeaa90 commit cf9af3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/slony/dlgRepSet.cpp
Expand Up @@ -192,7 +192,7 @@ wxString dlgRepSetMerge::GetSql()

if (set->GetSubscriptionCount() > 0)
{
sql = wxT("SELECT ") + cluster->GetSchemaPrefix() + wxT("sl_merge(") + toId + wxT(", ") + addId + wxT(");\n");
sql = wxT("SELECT ") + cluster->GetSchemaPrefix() + wxT("mergeset(") + toId + wxT(", ") + addId + wxT(");\n");
}
else
{
Expand Down Expand Up @@ -303,7 +303,7 @@ wxString dlgRepSetMove::GetSql()
wxString toId=NumToStr((long)cbTargetNode->GetClientData(cbTargetNode->GetSelection()));

wxString sql =
wxT("!!! LockSet, waitEvent(1,2),move, wait SELECT ") + cluster->GetSchemaPrefix() + wxT("moveset(") +
wxT("SELECT ") + cluster->GetSchemaPrefix() + wxT("moveset(") +
NumToStr(set->GetSlId()) + wxT(", ") + toId + wxT(");\n");
return sql;
}
Expand Down

0 comments on commit cf9af3f

Please sign in to comment.