\r
Date Dev Ver Change details\r
---------- --- ------ --------------\r
+2009-07-21 DP 1.12.0 Add the partition name to the proprties pane when viewing\r
+ the partitions of a table on GreenPlum [Chuck McDevitt].\r
2009-07-20 GL 1.10.1 Fix the dlgFunction handling of preload libraries, per\r
report from Michael Shapiro.\r
2009-07-20 GL 1.12.0 Multiple statements are an issue with pgPool-II in\r
CreateListColumns(properties);
properties->AppendItem(_("Name"), GetName());
+ if (GetConnection() != 0 && GetConnection()->GetIsGreenplum())
+ {
+ gpPartition * p = dynamic_cast<gpPartition *>(this);
+ if (p != 0)
+ properties->AppendItem(_("Partition Name"), p->GetPartitionName());
+ }
properties->AppendItem(_("OID"), GetOid());
properties->AppendItem(_("Owner"), GetOwner());
if (GetConnection()->BackendMinimumVersion(8, 0))