SVN Commit by andreas: r4277 - in trunk/pgadmin3: . src/db src/frm

From: svn(at)pgadmin(dot)org
To: pgadmin-hackers(at)postgresql(dot)org
Subject: SVN Commit by andreas: r4277 - in trunk/pgadmin3: . src/db src/frm
Date: 2005-06-03 19:21:18
Message-ID: 200506031921.j53JLIc5008409@developer.pgadmin.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Author: andreas
Date: 2005-06-03 20:21:18 +0100 (Fri, 03 Jun 2005)
New Revision: 4277

Modified:
trunk/pgadmin3/CHANGELOG.txt
trunk/pgadmin3/src/db/pgConn.cpp
trunk/pgadmin3/src/frm/frmMainConfig.cpp
Log:
Support for pgsql 8.1 instrumentation

Modified: trunk/pgadmin3/CHANGELOG.txt
===================================================================
--- trunk/pgadmin3/CHANGELOG.txt 2005-06-03 07:40:10 UTC (rev 4276)
+++ trunk/pgadmin3/CHANGELOG.txt 2005-06-03 19:21:18 UTC (rev 4277)
@@ -17,6 +17,7 @@
</ul>
<br>
<ul>
+ <li>2005-06-03 AP Support for pgsql 8.1 instrumentation
<li>2005-06-01 AP Support for Procedures aka functions with out parameters
<li>2005-06-01 AP Support for EDB8.0
<li>2005-05-31 DP 1.2.3 Fix domain RE SQL, per Ivan

Modified: trunk/pgadmin3/src/db/pgConn.cpp
===================================================================
--- trunk/pgadmin3/src/db/pgConn.cpp 2005-06-03 07:40:10 UTC (rev 4276)
+++ trunk/pgadmin3/src/db/pgConn.cpp 2005-06-03 19:21:18 UTC (rev 4277)
@@ -123,7 +123,7 @@
pgSet *set=ExecuteSet(
wxT("SELECT proname, pronargs, proargtypes[0] AS arg0, proargtypes[1] AS arg1, proargtypes[2] AS arg2\n")
wxT(" FROM pg_proc\n")
- wxT(" WHERE proname IN ('pg_tablespace_size', 'pg_file_read', 'pg_rotate_log',")
+ wxT(" WHERE proname IN ('pg_tablespace_size', 'pg_file_read', 'pg_logfile_rotate',")
wxT( " 'pg_postmaster_starttime', 'pg_terminate_backend', 'pg_reload_conf')"));

if (set)
@@ -138,7 +138,7 @@
else if (proname == wxT("pg_file_read") && pronargs == 3 && set->GetLong(wxT("arg0")) == 25
&& set->GetLong(wxT("arg1")) == 20 && set->GetLong(wxT("arg2")) == 20)
features[FEATURE_FILEREAD] = true;
- else if (proname == wxT("pg_rotate_log") && pronargs == 0)
+ else if (proname == wxT("pg_logfile_rotate") && pronargs == 0)
features[FEATURE_ROTATELOG] = true;
else if (proname == wxT("pg_postmaster_starttime") && pronargs == 0)
features[FEATURE_POSTMASTER_STARTTIME] = true;

Modified: trunk/pgadmin3/src/frm/frmMainConfig.cpp
===================================================================
--- trunk/pgadmin3/src/frm/frmMainConfig.cpp 2005-06-03 07:40:10 UTC (rev 4276)
+++ trunk/pgadmin3/src/frm/frmMainConfig.cpp 2005-06-03 19:21:18 UTC (rev 4277)
@@ -475,7 +475,7 @@
FillList(wxT("client_min_messages")); // Reporting and Logging / When to Log
FillList(wxT("log_destination")); // Reporting and Logging / Where to Log
FillList(wxT("stats_command_string")); // Statistics / Query and Index Statistics Collector
- FillList(wxT("debug_shared_buffers")); // Statistics / Monitoring
+ FillList(wxT("log_executor_stats")); // Statistics / Monitoring
FillList(wxT("fsync")); // Write-Ahead Log / Settings
FillList(wxT("checkpoint_segments")); // Write-Ahead Log / Checkpoints
FillList(wxT("add_missing_from")); // Version and Platform Compatibility / Previous PostgreSQL Version

Browse pgadmin-hackers by date

  From Date Subject
Next Message svn 2005-06-03 20:05:54 SVN Commit by andreas: r4278 - in trunk/pgadmin3: . src/frm src/schema
Previous Message Andreas Pflug 2005-06-03 16:29:53 Re: questions about pgadmin messages