Fix the SQL when adding a new index without a name When a user adds an index without setting its name, but with a comment or the CLUSTER option, the two specific SQL commands to set the comment and the CLUSTER option don't have the name of the index (as we don't know it yet), and thus fail.
If we don't have a name, we now disable both widgets (comment and cluster), and we don't take care of their value in GetSql method(). Per report from Bartosz Dmytrak Branch ------ master Details ------- http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=b11e9050c806530fa0d9a80846d342c94a55842d Modified Files -------------- CHANGELOG | 3 +++ pgadmin/dlg/dlgIndex.cpp | 10 ++++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) -- Sent via pgadmin-hackers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
