Author: andreas
Date: 2005-10-23 15:26:10 +0100 (Sun, 23 Oct 2005)
New Revision: 4594
Modified:
trunk/pgadmin3/src/slony/dlgRepSet.cpp
Log:
typo fix
Modified: trunk/pgadmin3/src/slony/dlgRepSet.cpp
===================================================================
--- trunk/pgadmin3/src/slony/dlgRepSet.cpp 2005-10-23 12:29:06 UTC (rev 4593)
+++ trunk/pgadmin3/src/slony/dlgRepSet.cpp 2005-10-23 14:26:10 UTC (rev 4594)
@@ -192,7 +192,7 @@
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
{
@@ -303,7 +303,7 @@
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;
}