From: | svn(at)pgadmin(dot)org |
---|---|
To: | pgadmin-hackers(at)postgresql(dot)org |
Subject: | SVN Commit by dpage: r4460 - trunk/pgadmin3/src/dlg |
Date: | 2005-09-23 12:38:26 |
Message-ID: | 200509231238.j8NCcQBm006825@developer.pgadmin.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgadmin-hackers |
Author: dpage
Date: 2005-09-23 13:38:25 +0100 (Fri, 23 Sep 2005)
New Revision: 4460
Modified:
trunk/pgadmin3/src/dlg/dlgTable.cpp
Log:
Further fixes to table modification SQL [Miha Radej]
Modified: trunk/pgadmin3/src/dlg/dlgTable.cpp
===================================================================
--- trunk/pgadmin3/src/dlg/dlgTable.cpp 2005-09-23 08:56:53 UTC (rev 4459)
+++ trunk/pgadmin3/src/dlg/dlgTable.cpp 2005-09-23 12:38:25 UTC (rev 4460)
@@ -377,7 +377,7 @@
tmpsql += wxT("ALTER TABLE ") + tabname
+ wxT(" ADD");
if (!conname.IsEmpty())
- sql += wxT(" CONSTRAINT ");
+ tmpsql += wxT(" CONSTRAINT ");
tmpsql += definition + wxT(";\n");
}
From | Date | Subject | |
---|---|---|---|
Next Message | Dave Page | 2005-09-23 12:39:00 | Re: altering table properties |
Previous Message | Miha Radej | 2005-09-23 12:27:17 | Re: altering table properties |