<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.postgresql.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dpage</id>
	<title>PostgreSQL wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.postgresql.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dpage"/>
	<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/wiki/Special:Contributions/Dpage"/>
	<updated>2026-06-07T19:07:17Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.17</generator>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=CustomCumulativeStats&amp;diff=43393</id>
		<title>CustomCumulativeStats</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=CustomCumulativeStats&amp;diff=43393"/>
		<updated>2026-05-06T09:04:31Z</updated>

		<summary type="html">&lt;p&gt;Dpage: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Custom Cumulative Statistics (pgstats) =&lt;br /&gt;
&lt;br /&gt;
Extensions can register their own custom cumulative statistics to the gathering of any statistical data using the same APIs as PostgreSQL&#039;s [https://www.postgresql.org/docs/devel/monitoring-stats.html backend pgstats].&lt;br /&gt;
&lt;br /&gt;
Each custom cumulative statistics needs to register using a unique ID (across all extensions) to prevent problems with conflicts when handling the stats data (hash key in dshash table, read and write of pgstats file). The IDs are limited at compile-time, however, and only IDs between PGSTAT_KIND_CUSTOM_MIN and PGSTAT_KIND_CUSTOM_MAX (inclusive) are available natively for custom cumulative statistics as of PostgreSQL 18, as defined in utils/pgstat_kind.h. It is possible to change these limits.&lt;br /&gt;
&lt;br /&gt;
This page lists the current extensions that require custom cumulative stats, and the IDs which are reserved for them. If your extension requires a new type of custom cumulative statistics, start out by using PGSTAT_KIND_EXPERIMENTAL (24 as of PostgreSQL 18). When the project is close to release or being used in production, choose an unused stats kind ID and add to this list to reserve it.&lt;br /&gt;
&lt;br /&gt;
End-users must ensure that the extensions they deploy do not conflict, while it&#039;s not expected with open source extensions for which authors must take care of the current list, close source extensions could easily overlap.&lt;br /&gt;
&lt;br /&gt;
= List of Custom Stats =&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;3&amp;quot;&lt;br /&gt;
!KindId||Extension||Description||License&lt;br /&gt;
|-&lt;br /&gt;
|24||N/A||Used for extensions still in development||N/A&lt;br /&gt;
|-&lt;br /&gt;
|25||N/A||In-core test module for variable-numbered stats||N/A&lt;br /&gt;
|-&lt;br /&gt;
|26||N/A||In-core test module for fixed-numbered stats||N/A&lt;br /&gt;
|-&lt;br /&gt;
|27||[https://github.com/pganalyze/pg_stat_plans pg_stat_plans]||Aggregated plan statistics tracking||PostgreSQL license&lt;br /&gt;
|-&lt;br /&gt;
|28||[https://github.com/fabriziomello/pg_stat_log pg_stat_log]||Log messages tracking||PostgreSQL license&lt;br /&gt;
|-&lt;br /&gt;
|29||[https://github.com/pgEdge/spock/ spock]||Replication stats tracking||PostgreSQL license&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=CustomWALResourceManagers&amp;diff=41768</id>
		<title>CustomWALResourceManagers</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=CustomWALResourceManagers&amp;diff=41768"/>
		<updated>2025-09-23T08:41:12Z</updated>

		<summary type="html">&lt;p&gt;Dpage: Add reservation for Spock.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Custom WAL Resource Manager (rmgr) =&lt;br /&gt;
&lt;br /&gt;
Extensions can register their own custom WAL resource managers to support custom redo, physical replication, and logical replication/decoding.&lt;br /&gt;
&lt;br /&gt;
Each resource manager needs to register using a unique ID (across all extensions) to prevent problems with crash recovery and replication. The IDs are limited, however, and only IDs between 128 and 255 (inclusive) are available for custom resource managers.&lt;br /&gt;
&lt;br /&gt;
This page lists the current extensions that require a custom resource manager, and the IDs which are reserved for them. If your extension requires a new custom resource manager, start out by using RM_EXPERIMENTAL_ID (128). When the project is close to release or being used in production, choose an unused resource manager ID and add to this list to reserve it.&lt;br /&gt;
&lt;br /&gt;
End-users must ensure that the extensions they deploy do not conflict, while it&#039;s not expected with open source extensions for which authors must take care of the current list, close source extensions could easily overlap.&lt;br /&gt;
&lt;br /&gt;
= List of Custom Rmgrs =&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;3&amp;quot;&lt;br /&gt;
!RmgrId||Extension||Description||License&lt;br /&gt;
|-&lt;br /&gt;
|128||N/A||Used for extensions still in development||N/A&lt;br /&gt;
|-&lt;br /&gt;
|129||[https://github.com/orioledb/orioledb OrioleDB]||OrioleDB – building a modern cloud-native storage engine (... and solving some PostgreSQL wicked problems) 🇺🇦 ||[https://opensource.org/license/postgresql/ PostgreSQL License]&lt;br /&gt;
|-&lt;br /&gt;
|130||[https://enterprisedb.com EnterpriseDB]||Bluefin – Compressed IoT storage|| Proprietary&lt;br /&gt;
|-&lt;br /&gt;
|131||[https://enterprisedb.com EnterpriseDB]||Bluefin2 – Compressed IoT storage|| Proprietary&lt;br /&gt;
|-&lt;br /&gt;
|132||[https://enterprisedb.com EnterpriseDB]||Marlin – High Update storage|| Proprietary&lt;br /&gt;
|-&lt;br /&gt;
|133||[https://enterprisedb.com EnterpriseDB]||Marlin2 – High Update storage|| Proprietary&lt;br /&gt;
|-&lt;br /&gt;
|134||[https://github.com/neondatabase/neon/ Neon]||Neon storage system|| [https://www.apache.org/licenses/LICENSE-2.0.html Apache 2]&lt;br /&gt;
|-&lt;br /&gt;
|135||[https://postgrespro.com PostgresPro]||AQO – Adaptive query optimization|| Proprietary&lt;br /&gt;
|-&lt;br /&gt;
|136||[https://postgrespro.com PostgresPro]||sr_plan/pgpro_multiplan – Save and restore plan|| Proprietary&lt;br /&gt;
|-&lt;br /&gt;
|137||[https://github.com/paradedb/paradedb/tree/dev/pg_analytics pg_analytics]||pg_analytics extension|| [https://www.gnu.org/licenses/agpl-3.0 GNU AGPL3]&lt;br /&gt;
|-&lt;br /&gt;
|138||[https://github.com/pgroonga/pgroonga PGroonga]||PGroonga - Fast full text search index for all languages|| [https://opensource.org/license/postgresql/ PostgreSQL License]&lt;br /&gt;
|-&lt;br /&gt;
|139||[https://enterprisedb.com EnterpriseDB]||Hsphere - Hypersphere AI embedding index|| Proprietary&lt;br /&gt;
|-&lt;br /&gt;
|140||[https://github.com/percona/pg_tde Percona]||pg_tde - data at rest encryption extension|| [https://opensource.org/license/mit/ MIT]&lt;br /&gt;
|-&lt;br /&gt;
|141||[https://www.thenile.dev Nile]||Nile Storage|| [https://www.apache.org/licenses/LICENSE-2.0.html Apache 2]&lt;br /&gt;
|-&lt;br /&gt;
|142||[https://postgrespro.com PostgresPro]||pgpro_usage – per-user statistics on accessing relations and functions|| Proprietary&lt;br /&gt;
|-&lt;br /&gt;
|143||[https://postgrespro.com PostgresPro]||pgpro_result_cache - an extension for query result caching|| Proprietary&lt;br /&gt;
|-&lt;br /&gt;
|144||[https://github.com/pgedge/spock pgEdge]||spock - Logical multi-master PostgreSQL replication|| [https://opensource.org/license/postgresql/ PostgreSQL License]&lt;br /&gt;
|-&lt;br /&gt;
|241||[https://github.com/citusdata/citus/tree/master/src/backend/columnar Columnar]||Columnar compression extension||[https://www.gnu.org/licenses/agpl-3.0 GNU AGPL3]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Extensions]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=Committers&amp;diff=38703</id>
		<title>Committers</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=Committers&amp;diff=38703"/>
		<updated>2024-03-01T09:56:58Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* New Committers and Removing Committers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the current list of people with access to push to the git repository with their user names.  For technical details on how committing works, see [[Committing with Git]].  Note: This is just a list of people who currently have access to push to git; for information on current and previous contributors, see the [http://www.postgresql.org/community/contributors/ contributor profiles] section of the web site.  Note: The names are listed here in order of first commit or when added as a committer, oldest first; this isn&#039;t intended to imply anything about depth of contribution.&lt;br /&gt;
&lt;br /&gt;
* Bruce Momjian (momjian)&lt;br /&gt;
* Tom Lane (tgl)&lt;br /&gt;
* Michael Meskes (meskes)&lt;br /&gt;
* Tatsuo Ishii (ishii)&lt;br /&gt;
* Peter Eisentraut (petere)&lt;br /&gt;
* Joe Conway (joe)&lt;br /&gt;
* Alvaro Herrera (alvherre)&lt;br /&gt;
* Andrew Dunstan (adunstan)&lt;br /&gt;
* Magnus Hagander (mha)&lt;br /&gt;
* Heikki Linnakangas (heikki)&lt;br /&gt;
* Robert Haas (rhaas)&lt;br /&gt;
* Jeff Davis (jdavis)&lt;br /&gt;
* Fujii Masao (fujii)&lt;br /&gt;
* Noah Misch (noah)&lt;br /&gt;
* Andres Freund (andres)&lt;br /&gt;
* Dean Rasheed (deanr)&lt;br /&gt;
* Andrew Gierth (rhodiumtoad)&lt;br /&gt;
* Alexander Korotkov (smagen)&lt;br /&gt;
* Amit Kapila (amitkapila)&lt;br /&gt;
* Tomas Vondra (fuzzycz)&lt;br /&gt;
* Michael Paquier (michael-kun)&lt;br /&gt;
* Thomas Munro (macdice)&lt;br /&gt;
* Peter Geoghegan (pgeoghegan)&lt;br /&gt;
* Etsuro Fujita (efujita)&lt;br /&gt;
* David Rowley (drowley)&lt;br /&gt;
* Daniel Gustafsson (d_gustafsson)&lt;br /&gt;
* John Naylor (john.naylor)&lt;br /&gt;
* Nathan Bossart (nathan)&lt;br /&gt;
* Amit Langote (amitlan)&lt;br /&gt;
* Masahiko Sawada (msawada)&lt;br /&gt;
&lt;br /&gt;
== Notes on the Commit Log ==&lt;br /&gt;
&lt;br /&gt;
Hundreds of developers have successfully contributed work to PostgreSQL over more than 20 years, many acting as individuals, though also many representing academic institutions and both user and vendor companies.  Both the &amp;quot;Author&amp;quot; and &amp;quot;Committer&amp;quot; fields of such patches will reflect the committer. The actual author of a patch, if different, is generally listed in the commit message; reviewers or others who contributed ideas or otherwise helped with the patch may also be listed.  Many patches, in the form in which they are committed, are the work of multiple people: original author or authors, reviewer(s), and/or committer.  As a result, no simple analysis of duration or depth of contribution over time is possible from the commit log. The project operates a system of careful peer review and even committers have their work checked by other committers and the community as a whole. &lt;br /&gt;
&lt;br /&gt;
== New Committers and Removing Committers ==&lt;br /&gt;
&lt;br /&gt;
New committers are added approximately annually by the Core Team.   Contributors to PostgreSQL are selected to be committers based on the following loose criteria:&lt;br /&gt;
&lt;br /&gt;
* several years of substantial contributions to the project&lt;br /&gt;
* multiple and continuing code contributions&lt;br /&gt;
* responsibility for maintenance of one or more areas of the codebase&lt;br /&gt;
* track record of reviewing and helping other contributors with their patches&lt;br /&gt;
* high quality code contributions which require very little revision or correction for commit&lt;br /&gt;
* demonstrated understanding of the process and criteria for patch acceptance&lt;br /&gt;
&lt;br /&gt;
Generally, new committers are selected March or April and announced&lt;br /&gt;
at [https://pgconf.dev PGConf.dev] (and historically its predecessor&lt;br /&gt;
[https://PGCon PGCon]).&lt;br /&gt;
&lt;br /&gt;
Committers who have become inactive and have not contributed significantly to the PostgreSQL project in several years are removed as committers.  Again, the review process for this is approximately annual.&lt;br /&gt;
&lt;br /&gt;
[[Category:Community]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=Committers&amp;diff=38699</id>
		<title>Committers</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=Committers&amp;diff=38699"/>
		<updated>2024-02-29T14:49:22Z</updated>

		<summary type="html">&lt;p&gt;Dpage: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the current list of people with access to push to the git repository with their user names.  For technical details on how committing works, see [[Committing with Git]].  Note: This is just a list of people who currently have access to push to git; for information on current and previous contributors, see the [http://www.postgresql.org/community/contributors/ contributor profiles] section of the web site.  Note: The names are listed here in order of first commit or when added as a committer, oldest first; this isn&#039;t intended to imply anything about depth of contribution.&lt;br /&gt;
&lt;br /&gt;
* Bruce Momjian (momjian)&lt;br /&gt;
* Tom Lane (tgl)&lt;br /&gt;
* Michael Meskes (meskes)&lt;br /&gt;
* Tatsuo Ishii (ishii)&lt;br /&gt;
* Peter Eisentraut (petere)&lt;br /&gt;
* Joe Conway (joe)&lt;br /&gt;
* Alvaro Herrera (alvherre)&lt;br /&gt;
* Andrew Dunstan (adunstan)&lt;br /&gt;
* Magnus Hagander (mha)&lt;br /&gt;
* Heikki Linnakangas (heikki)&lt;br /&gt;
* Robert Haas (rhaas)&lt;br /&gt;
* Jeff Davis (jdavis)&lt;br /&gt;
* Fujii Masao (fujii)&lt;br /&gt;
* Noah Misch (noah)&lt;br /&gt;
* Andres Freund (andres)&lt;br /&gt;
* Dean Rasheed (deanr)&lt;br /&gt;
* Andrew Gierth (rhodiumtoad)&lt;br /&gt;
* Alexander Korotkov (smagen)&lt;br /&gt;
* Amit Kapila (amitkapila)&lt;br /&gt;
* Tomas Vondra (fuzzycz)&lt;br /&gt;
* Michael Paquier (michael-kun)&lt;br /&gt;
* Thomas Munro (macdice)&lt;br /&gt;
* Peter Geoghegan (pgeoghegan)&lt;br /&gt;
* Etsuro Fujita (efujita)&lt;br /&gt;
* David Rowley (drowley)&lt;br /&gt;
* Daniel Gustafsson (d_gustafsson)&lt;br /&gt;
* John Naylor (john.naylor)&lt;br /&gt;
* Nathan Bossart (nathan)&lt;br /&gt;
* Amit Langote (amitlan)&lt;br /&gt;
* Masahiko Sawada (msawada)&lt;br /&gt;
&lt;br /&gt;
== Notes on the Commit Log ==&lt;br /&gt;
&lt;br /&gt;
Hundreds of developers have successfully contributed work to PostgreSQL over more than 20 years, many acting as individuals, though also many representing academic institutions and both user and vendor companies.  Both the &amp;quot;Author&amp;quot; and &amp;quot;Committer&amp;quot; fields of such patches will reflect the committer. The actual author of a patch, if different, is generally listed in the commit message; reviewers or others who contributed ideas or otherwise helped with the patch may also be listed.  Many patches, in the form in which they are committed, are the work of multiple people: original author or authors, reviewer(s), and/or committer.  As a result, no simple analysis of duration or depth of contribution over time is possible from the commit log. The project operates a system of careful peer review and even committers have their work checked by other committers and the community as a whole. &lt;br /&gt;
&lt;br /&gt;
== New Committers and Removing Committers ==&lt;br /&gt;
&lt;br /&gt;
New committers are added approximately annually by the Core Team.   Contributors to PostgreSQL are selected to be committers based on the following loose criteria:&lt;br /&gt;
&lt;br /&gt;
* several years of substantial contributions to the project&lt;br /&gt;
* multiple and continuing code contributions&lt;br /&gt;
* responsibility for maintenance of one or more areas of the codebase&lt;br /&gt;
* track record of reviewing and helping other contributors with their patches&lt;br /&gt;
* high quality code contributions which require very little revision or correction for commit&lt;br /&gt;
* demonstrated understanding of the process and criteria for patch acceptance&lt;br /&gt;
&lt;br /&gt;
Generally, new committers are selected March or April and announced at pgCon.&lt;br /&gt;
&lt;br /&gt;
Committers who have become inactive and have not contributed significantly to the PostgreSQL project in several years are removed as committers.  Again, the review process for this is approximately annual.&lt;br /&gt;
&lt;br /&gt;
[[Category:Community]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=Handling_Security_Issues&amp;diff=38698</id>
		<title>Handling Security Issues</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=Handling_Security_Issues&amp;diff=38698"/>
		<updated>2024-02-29T14:48:07Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* Security team */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page contains information for developers on how to deal with security issues and how to prepare a security release.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; If you are a user who wants to report a security issue or who wants to learn about how the PostgreSQL project deals with security issues, please go to http://www.postgresql.org/support/security.  The wiki page you are looking at is aimed at developers.&lt;br /&gt;
&lt;br /&gt;
== security@postgresql.org ==&lt;br /&gt;
&lt;br /&gt;
The email address security@postgresql.org is the recommended contact point for all inquiries about security issues.  It currently points at pgsql-security@postgresql.org.&lt;br /&gt;
&lt;br /&gt;
== Security team ==&lt;br /&gt;
&lt;br /&gt;
The security team is a closed-subscription list whose purpose is to be able to discuss security issues in a controlled group.  The current members are:&lt;br /&gt;
&lt;br /&gt;
* Álvaro Herrera&lt;br /&gt;
* Andres Freund&lt;br /&gt;
* Andrew Dunstan&lt;br /&gt;
* Bruce Momjian&lt;br /&gt;
* Dave Page&lt;br /&gt;
* Greg Stark&lt;br /&gt;
* Heikki Linnakangas&lt;br /&gt;
* Joe Conway&lt;br /&gt;
* Jonathan Katz&lt;br /&gt;
* Magnus Hagander&lt;br /&gt;
* Michael Paquier&lt;br /&gt;
* Noah Misch&lt;br /&gt;
* Peter Eisentraut&lt;br /&gt;
* Robert Haas&lt;br /&gt;
* Stefan Kaltenbrunner&lt;br /&gt;
* Tom Lane&lt;br /&gt;
&lt;br /&gt;
== Responding to security bug reports ==&lt;br /&gt;
&lt;br /&gt;
Respond to a security bug report reported via the security@ address in the same way as you would with a normal bug report on pgsql-bugs.  The only difference is that the issue should not be disclosed to anyone outside the security team and the original reporter.&lt;br /&gt;
&lt;br /&gt;
== Committing patches for security issues ==&lt;br /&gt;
&lt;br /&gt;
If the git commit log message for a commit matches&lt;br /&gt;
&lt;br /&gt;
 /^Security:/&lt;br /&gt;
&lt;br /&gt;
then the message on pgsql-committers will be held for moderation.  This facility should be applied when committing a patch for a security issue, so that details of the fix don&#039;t get broadcast to the world before the release including the fix is made.  See [http://archives.postgresql.org/pgsql-committers/2008-01/msg00100.php this example] for a commit message where this was done.  As in that example, the recommended style is something like &amp;quot;Security: CVE-number&amp;quot; or some other reference to the reason for the security marker.&lt;br /&gt;
&lt;br /&gt;
== CVE numbers ==&lt;br /&gt;
&lt;br /&gt;
A CVE number should be requested for every security issue.  This number should be included in all the commit messages, announcements, and so on.  A document describing the process can be found on developer.postgresql.org at ~petere/can-request.txt (only available with shell access, because it is not a public document).  The person who drives the process of fixing the issue and preparing the security release (often Tom Lane) is usually the one who deals with requesting the CVE numbers.&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=Infrastructure_team&amp;diff=38697</id>
		<title>Infrastructure team</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=Infrastructure_team&amp;diff=38697"/>
		<updated>2024-02-29T14:32:17Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* Infrastructure Team Members */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Infrastructure Team ==&lt;br /&gt;
&lt;br /&gt;
The Infrastructure team is responsible for running all of the postgresql.org infrastructure. This includes a wide variety of public and non-public services.  PostgreSQL website development is discussed on the [http://archives.postgresql.org/pgsql-www/ pgsql-www mailing list]. Source code for the postgresql.org web site is stored in a public GIT repository, and is available on [http://git.postgresql.org/gitweb/?p=pgweb.git;a=summary]&lt;br /&gt;
&lt;br /&gt;
== Infrastructure Team Members ==&lt;br /&gt;
&lt;br /&gt;
The following people are part of the sysadmin team running the postgresql.org infrastructure.&lt;br /&gt;
&lt;br /&gt;
* Magnus Hagander&lt;br /&gt;
* Álvaro Herrera&lt;br /&gt;
* Stefan Kaltenbrunner&lt;br /&gt;
* Dave Page&lt;br /&gt;
* Joe Conway&lt;br /&gt;
* Christophe Pettus&lt;br /&gt;
&lt;br /&gt;
In case you want to reach out to the Infrastructure team, please contact us at sysadmins@lists.postgresql.org&lt;br /&gt;
&lt;br /&gt;
[[Category:Community]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=Infrastructure_team&amp;diff=38696</id>
		<title>Infrastructure team</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=Infrastructure_team&amp;diff=38696"/>
		<updated>2024-02-29T14:32:06Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* Infrastructure Team Members */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Infrastructure Team ==&lt;br /&gt;
&lt;br /&gt;
The Infrastructure team is responsible for running all of the postgresql.org infrastructure. This includes a wide variety of public and non-public services.  PostgreSQL website development is discussed on the [http://archives.postgresql.org/pgsql-www/ pgsql-www mailing list]. Source code for the postgresql.org web site is stored in a public GIT repository, and is available on [http://git.postgresql.org/gitweb/?p=pgweb.git;a=summary]&lt;br /&gt;
&lt;br /&gt;
== Infrastructure Team Members ==&lt;br /&gt;
&lt;br /&gt;
The following people are part of the sysadmin team running the postgresql.org infrastructure.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Magnus Hagander&lt;br /&gt;
* Álvaro Herrera&lt;br /&gt;
* Stefan Kaltenbrunner&lt;br /&gt;
* Dave Page&lt;br /&gt;
* Joe Conway&lt;br /&gt;
* Christophe Pettus&lt;br /&gt;
&lt;br /&gt;
In case you want to reach out to the Infrastructure team, please contact us at sysadmins@lists.postgresql.org&lt;br /&gt;
&lt;br /&gt;
[[Category:Community]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=FOSDEM/PGDay_2024_Developer_Meeting&amp;diff=38629</id>
		<title>FOSDEM/PGDay 2024 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=FOSDEM/PGDay_2024_Developer_Meeting&amp;diff=38629"/>
		<updated>2024-02-01T11:06:15Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* FOSDEM 2024 Developer Meeting schedule by Time and Room */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== FOSDEM 2024 Developer Meeting schedule by Time and Room ==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Studio 4&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:lightgray;&amp;quot;&lt;br /&gt;
|Thur 9:00-9:10&lt;br /&gt;
|Welcome and Introductions&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 9:10-9:30&lt;br /&gt;
|Property Graph Queries (Vik)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 9:30-10:00&lt;br /&gt;
|Binary format output per session (Dave C)&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:lightgray;&amp;quot;&lt;br /&gt;
|Thur 10:00&lt;br /&gt;
|Coffee&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 10:30-11:00&lt;br /&gt;
|Meson and packaging (Devrim)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 11:00-11:30&lt;br /&gt;
|Built-in collation provider for &amp;quot;C&amp;quot; and &amp;quot;C.UTF-8&amp;quot; (Jeff)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 11:30-12:00&lt;br /&gt;
|CREATE SUBSCRIPTION ... SERVER (Jeff)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 12:00-12:30&lt;br /&gt;
|The Path to un-reverting the MAINTAIN privilege (Nathan)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:lightgray;&amp;quot;&lt;br /&gt;
|Thur 12:30-13:30&lt;br /&gt;
|Lunch&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 13:30-13:40&lt;br /&gt;
|Moving Forward with Pending Patches (Unknown: &amp;quot;I have encountered a situation where some of my patches have not been reviewed by others, preventing them from moving forward.  I believe this is a common challenge faced by other developers as well.  It would be great if we could engage in a discussion about this and potentially brainstorm ideas to improve it.&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Note from Daniel: &amp;quot;This was proposed by a hacker who was unable to attend&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 13:40-13:50&lt;br /&gt;
|Recognizing New Contributors (Unknown: &amp;quot;Many active developers, including myself, desire to be listed as a Contributor, but just do not know how.  This lack of clarity can be confusing.  I&#039;m wondering if it&#039;s possible to have a discussion on how to effectively recognize and acknowledge new contributors.&amp;quot;). &lt;br /&gt;
&lt;br /&gt;
Note from Daniel: &amp;quot;This was proposed by that same person, and since he isn&#039;t able to attend I don&#039;t think it&#039;s fair to identify him (I did promise I&#039;d bring this up anonymously to put focus on the issue and not the person).  This is a person who I can vouch for being very active, prolific enough to show up on Roberts recent &amp;quot;Who contributed to..&amp;quot; blogpost.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:white;&amp;quot;&lt;br /&gt;
|Thur 13:50-14:00&lt;br /&gt;
|Thomas&#039; other thing.&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:white;&amp;quot;&lt;br /&gt;
|Thur 14:00-14:30&lt;br /&gt;
|Page Features / Reserve space on page&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:white;&amp;quot;&lt;br /&gt;
|Thur 14:30-15:00&lt;br /&gt;
|TDE / IVs / More&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:lightgray;&amp;quot;&lt;br /&gt;
|Thur 15:00&lt;br /&gt;
|Tea&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:white;&amp;quot;&lt;br /&gt;
|Thur 15:30-16:45&lt;br /&gt;
|v17 Patch Triage&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:white;&amp;quot;&lt;br /&gt;
|Thur 16:45-17:00&lt;br /&gt;
|Any other business &amp;amp; close.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Suggested topics ==&lt;br /&gt;
&lt;br /&gt;
* Patch Triage&lt;br /&gt;
* Moving Forward with Pending Patches&lt;br /&gt;
* Recognizing New Contributors&lt;br /&gt;
* What&#039;s new in SQL:2023&lt;br /&gt;
* Binary format output per session&lt;br /&gt;
* Meson and packaging&lt;br /&gt;
* Developer Meeting during PGConf Europe&lt;br /&gt;
* Page Features / Reserve space on page&lt;br /&gt;
* TDE&lt;br /&gt;
&lt;br /&gt;
== Notes/Minutes ==&lt;br /&gt;
&lt;br /&gt;
=== Property Graph Queries ===&lt;br /&gt;
&lt;br /&gt;
Vik&#039;s presentation on SQL/PGQ - Property Graph Queries which is a new addition to SQL added into SQL 2023.&lt;br /&gt;
&lt;br /&gt;
Goes over differences between the relational model and the graph model, talks about GQL (Graph Query Language), then about how to turn GQL queries into SQL/PGQ.&lt;br /&gt;
&lt;br /&gt;
Discussion about implementation in the PG parser, how the definition of the property graphs works, what a PG implementation may look like, etc.&lt;br /&gt;
&lt;br /&gt;
=== Binary format output per session ===&lt;br /&gt;
&lt;br /&gt;
Dave C - Few years ago put out what all interfaces want.  What all interfaces want is to get all info back in binary.  Today everything comes back as text by default.  JDBC and other drivers have to use extended query protocol and send a describe message (extra round-trip) to get data back in binary.  In Java world, nearly everything comes back as text to avoid the extra round-trip.  PGVector would benefit a lot from returning the data as binary instead of text due to it being lots of floats.  Put together naive patch to use a GUC to pick OIDs to return as binary at the start of the session.  Other interfaces have also looked at it- JDBC, npgsql (?) seem to like it.  Doesn&#039;t seem like GUC is necessarily the best way to do this but would be good to do something.&lt;br /&gt;
&lt;br /&gt;
Peter E - Wrote email in Oct about this, quick summary: using a GUC is complicated because it ends up being best-effort.  Many patches for this exist and need to consider connection poolers too.  Discussion of making it a new protocol setting but we are not really ready to extend the protocol in the way we want to.&lt;br /&gt;
&lt;br /&gt;
Dave C - Don&#039;t see being able to extend the protocol?&lt;br /&gt;
&lt;br /&gt;
Peter E - Not sure.  How to identify the types- names?  OIDs?  What is the OID ends up being different in different systems due to extensions?  Haven&#039;t considered that part of it.  Independent install of postgis into separate systems you&#039;ll get different OIDs, names you have to deal with schemas too, etc.  One idea- Fixed UUIDv4 type that would be global?  Want to have this be some kind of session property though.  Don&#039;t want to ship this request with every query.  Not a lot of session state in the protocol, not much precedent for it.  Column-encryption has a similar issue.  Have to hook session state in with the discard command and other things.  Maybe could work similar to client encoding?  Client communicates to server what client encoding it supports.  Client encoding isn&#039;t terribly robust and there are concerns with using that approach but there are a lot of edge cases.&lt;br /&gt;
&lt;br /&gt;
Dave C - That&#039;s a challenge but the benefit is universal and quite large.&lt;br /&gt;
&lt;br /&gt;
Peter E - Could just make this a connection option.&lt;br /&gt;
&lt;br /&gt;
Dave C - That would be ok too.&lt;br /&gt;
&lt;br /&gt;
Matthias - No type that doesn&#039;t have binary.&lt;br /&gt;
&lt;br /&gt;
Peter E - Most do but some extensions may not.&lt;br /&gt;
&lt;br /&gt;
Matthias - When we flush the datum it&#039;s binary&lt;br /&gt;
&lt;br /&gt;
Peter E - No, it&#039;s the send/recv functions that we&#039;re talking about, not the internal.&lt;br /&gt;
&lt;br /&gt;
Dave C - Current default is we send everything as text.&lt;br /&gt;
&lt;br /&gt;
Nathan - If everything including extensions seems to have binary support then maybe that isn&#039;t a huge issue..&lt;br /&gt;
&lt;br /&gt;
Peter E - Maybe just have a flag that says everything comes back as binary?&lt;br /&gt;
&lt;br /&gt;
Dave C - Would work for me.&lt;br /&gt;
&lt;br /&gt;
Alvaro - What about pgbouncer?&lt;br /&gt;
&lt;br /&gt;
Peter E - Would still have to track it but would have only one flag to track.&lt;br /&gt;
&lt;br /&gt;
Magnus - Maybe have to have separate pools, one for binary one for text.&lt;br /&gt;
&lt;br /&gt;
Peter E - Need to think about it but maybe, but would probably be simpler with just one flag to deal with.  Maybe survey how many types have binary support and how many have text and how many have both.  Does JDBC driver use simple queries sometime?&lt;br /&gt;
&lt;br /&gt;
Dave C - Yes, sometimes it does use simple queries.&lt;br /&gt;
&lt;br /&gt;
Alvaro - Why use simple query?&lt;br /&gt;
&lt;br /&gt;
Dave C - Extended query can do odd things sometimes.  Mainly use it for isvalid (checking if the connection is valid).&lt;br /&gt;
&lt;br /&gt;
Peter E - Maybe change the client to always use extended query and then send every query saying to have the query be returned in binary.&lt;br /&gt;
&lt;br /&gt;
Dave C - Wasn&#039;t aware that it was possible to do everything as binary, very curious how that works.&lt;br /&gt;
&lt;br /&gt;
Matthias - How does the driver know about the new type?  Register it?&lt;br /&gt;
&lt;br /&gt;
Peter E - Trying to get away from having to register it.&lt;br /&gt;
&lt;br /&gt;
Dave C - Shouldn&#039;t matter because you wouldn&#039;t have a query asking for something that the driver doesn&#039;t have a decoder for.  Very few types that are actually new, most use floats, et al.&lt;br /&gt;
&lt;br /&gt;
Matthias - At least now you only use the binary types if you know you can handle it.&lt;br /&gt;
&lt;br /&gt;
Dave C - The person who wrote the application is going to know that they&#039;ll be able to handle the type that they are querying for.&lt;br /&gt;
&lt;br /&gt;
Magnus - Might have to make it optional in the driver if you&#039;re using an unknown extension.&lt;br /&gt;
&lt;br /&gt;
Dave C - Yeah, if something new was introduced then the app would break and have to be fixed if something new happened.  Or it would use text.&lt;br /&gt;
&lt;br /&gt;
Alvaro - New developer adds new table with query and the app breaks or gets much slower?&lt;br /&gt;
&lt;br /&gt;
Dave C - Wouldn&#039;t get slower, developer would have to either add the decoder or actually select that it&#039;s text and then deal with it being slower.  With Java/JDBC, application could register a new decoder.&lt;br /&gt;
&lt;br /&gt;
Munro - What about OIDs being reused?  No validation machinery.&lt;br /&gt;
&lt;br /&gt;
Peter E - Nothing in the protocol handles that today.  Maybe drivers already basically hard-code things.&lt;br /&gt;
&lt;br /&gt;
Matthias - For OIDs under the FirstValidUserOid (sp?) those won&#039;t ever change, only an issue for extensions adding/dropping extensions really.&lt;br /&gt;
&lt;br /&gt;
Discussion about having some kind of permanent identifier for types.  (Peter E, Munro, Magnus, Matthias)&lt;br /&gt;
&lt;br /&gt;
Munro - Maybe some kind of number assigning authority..&lt;br /&gt;
&lt;br /&gt;
Matthias - Redo manager has a wiki page for extensions to use.&lt;br /&gt;
&lt;br /&gt;
Magnus - Works because there&#039;s very few users who need those.&lt;br /&gt;
&lt;br /&gt;
Peter E - All of this would require some protocol changes.  Would still need to wait for the older things out there to die off that doesn&#039;t support protocol changes.&lt;br /&gt;
&lt;br /&gt;
Dave C - How old are those things?&lt;br /&gt;
&lt;br /&gt;
Joe - Maybe client that ships with RHEL 7 or something?&lt;br /&gt;
&lt;br /&gt;
Matthias - Any plans or ideas regarding update of our row send format because it&#039;s 4 bytes per field which is a lot of overhead but maybe we could reduce that somehow?  No specific proposal for specific changes but am curious if there&#039;s interest in adding a new row message type for smaller data where the message itself has less overhead.  Everything today works by handling up to a gigabyte per field but in some cases we don&#039;t need anywhere near that much.  Stephen - Like VARLEN, Magnus - yea, Matthias - Similar to this, maybe also be able to do column compression somehow.&lt;br /&gt;
&lt;br /&gt;
Dave C - Have thought about larger protocol changes&lt;br /&gt;
&lt;br /&gt;
Peter E - From Robert - Flat out not viable to bump the protocol version (email from 2024-01-16).&lt;br /&gt;
&lt;br /&gt;
Dave C - v16 is the first version that really handles protocol changes?&lt;br /&gt;
&lt;br /&gt;
Peter E - Yeah but even then not sure that it really works.  Certainly nothing before v16 in libpq would handle it.  Other drivers would have to deal with it too.&lt;br /&gt;
&lt;br /&gt;
Dave C - Maybe can just say to use the latest version for JDBC, at least.  This would mean we&#039;re locked into this for quite a while.&lt;br /&gt;
&lt;br /&gt;
Peter E - Much of this was back-patched in the middle of the prod releases and maybe if there&#039;s additional changes needed we could argue to back-patch those changes.&lt;br /&gt;
&lt;br /&gt;
Magnus - libpq needs to not fail with this is the main thing.&lt;br /&gt;
&lt;br /&gt;
Dave C - Have some research to do.&lt;br /&gt;
&lt;br /&gt;
=== Meson and packaging ===&lt;br /&gt;
&lt;br /&gt;
Devrim - Quick summary - started building packages 20-ish years ago, just the PG RPMS.  Now we have haproxy, consul, lots of other things.  200-300 packages for updates now.  Not about just meson but about most of the things.  Want to create a connection between the packagers and the developers.  Discussed ICU things with Jeff Davis in the past and with Munro regarding IBM things on the lists, this is great.  When there is a new feature like llvm in PG11, having the hackers tell the packagers is very helpful and if the packagers don&#039;t know then the packagers may not include support for those new features.  Packagers are reachable via wiki, packagers mailing list, etc.  Regarding meson- not following every email but trying to follow those regarding meson.  Wonder if PG17 will be built with meson?  Not just about meson but packagers should be included in discussion regarding versions of libraries like zlib.  We have a unified spec file for PG.  First question- is meson good enough to be used for the PG17 package?  What can we do to improve connection between hackers, users, and packagers.  Not just about PG but about also includes postgis and the various libraries that it uses and other extensions too.&lt;br /&gt;
&lt;br /&gt;
Peter E - meson is not 100% functional with the make build system for non-Windows platforms.  As of today, not sensible to use for official packages.  Possible that these issues will be fixed in time for PG17 but then we would be switching at the last minute.  Also need to check if all of the extensions work properly with meson build.  Maybe for v18 we switch early in the cycle for it.&lt;br /&gt;
&lt;br /&gt;
Berg - Tried meson but noticed that it doesn&#039;t support llvm which is a giant feature and stopped because of that.&lt;br /&gt;
&lt;br /&gt;
Alvaro - Need to make sure that once meson stuff is installed and you want to install an extension and is much harder to ensure that the extension can be built like pgxs, does it have support for meson and work?&lt;br /&gt;
&lt;br /&gt;
Peter E - Maybe switch early in v18 cycle and try to fix it up.&lt;br /&gt;
&lt;br /&gt;
Berg - As long as it is supposed to work then it&#039;s about fixing bugs.&lt;br /&gt;
&lt;br /&gt;
Peter E - Not worthwhile since llvm support just doesn&#039;t work at all right now.&lt;br /&gt;
&lt;br /&gt;
Alvaro - Can we insist on disallowing cross-compilation?&lt;br /&gt;
&lt;br /&gt;
Munro - Packagers mailing list is currently restricted but maybe we need one that isn&#039;t restricted for packaging discussions?&lt;br /&gt;
&lt;br /&gt;
Peter E - People can send to packagers ... and maybe CC other lists&lt;br /&gt;
&lt;br /&gt;
Magnus - Gets weird CC&#039;ing between lists that are private and not private&lt;br /&gt;
&lt;br /&gt;
Devrim - Not just about Berg and Devrim but there&#039;s lots of other packagers out there who are not just using the community packages.  More people need to be aware of this.  Experience so far is that not everyone is aware and we release and then other people come and ask Devrim about the new things in the spec file.  Don&#039;t expect me to follow everything though.&lt;br /&gt;
&lt;br /&gt;
Peter E - Existing packaging lists have very little traffic currently.  Packagers generally pull info from upstream through release notes and things, not the case that all of the hackers out there reach out to the packagers to tell them about new things.&lt;br /&gt;
&lt;br /&gt;
Devrim - If zlib is added as a specific library required then maybe the patch author should check out if the library is actually available on all of the different platforms or not.&lt;br /&gt;
&lt;br /&gt;
Berg - Maybe postgres can do better regarding having hackers communicating with our packagers.  Should packagers generally be expected to add new features?  Should some things not be enabled by default?  What about checksums?&lt;br /&gt;
&lt;br /&gt;
Peter E - Probably should just turn on all build-time options, but run-time options should be left as the PG defaults.&lt;br /&gt;
&lt;br /&gt;
Bruce - Release notes are written for a broad audience.  Not designed to show absolutely every build change or every config change.&lt;br /&gt;
&lt;br /&gt;
Munro - Perhaps there needs to be a new document.&lt;br /&gt;
&lt;br /&gt;
Bruce - Maybe.  Sometimes things are not added, because something that most users aren&#039;t going to see doesn&#039;t need to be included and we want to have the document be reasonable in terms of size.&lt;br /&gt;
&lt;br /&gt;
Peter E - We do have a section of incompatible changes, maybe we should have that be better organized.&lt;br /&gt;
&lt;br /&gt;
Bruce - Probably would be best as a separate document.&lt;br /&gt;
&lt;br /&gt;
Matthias - release notes for incompatible changes is much more user-focused.  Maybe put something like this at the end of the page.&lt;br /&gt;
&lt;br /&gt;
Bruce - How many people read the release notes?  Stephen - Lots.  Bruce - Only like dozens of people are needing this specific information while the release notes are for a much broader audience and so it would probably be better as a separate document.&lt;br /&gt;
&lt;br /&gt;
Jeff - Is the biggest issue the dependencies?&lt;br /&gt;
&lt;br /&gt;
Peter E - There are subsections not interesting to most people..  Bruce - Maybe we should remove those sections too then.&lt;br /&gt;
&lt;br /&gt;
Matthias - Minor release notes have things that are very detailed.&lt;br /&gt;
&lt;br /&gt;
Bruce - We include more detailed info because we don&#039;t expect them to re-test between minor versions, so we want to list things that people might run into when they do a minor release update.&lt;br /&gt;
&lt;br /&gt;
Matthias - Maybe we add a separate page for search-level compatibility issues, developer-level issues, extension authors.  Extensions being impacted by changes to internal structures.&lt;br /&gt;
&lt;br /&gt;
Peter E - Would never finish the release notes to include all those.&lt;br /&gt;
&lt;br /&gt;
Stephen - Extension authors should be following hackers or committers if they&#039;re using internal structures.&lt;br /&gt;
&lt;br /&gt;
Devrim - We build the beta packages and so it would be good to have the info about new switches that are added into configure before then.&lt;br /&gt;
&lt;br /&gt;
Magnus - Do we have a process for adding things to buildfarm animals in terms of switches?&lt;br /&gt;
&lt;br /&gt;
Matthias - Hackers who add the feature tend to add that option to their buildfarm animals.&lt;br /&gt;
&lt;br /&gt;
Munro - Or the hacker adding things has to reach out to buildfarm animal maintainers and keep on them to fix their animals and add support.&lt;br /&gt;
&lt;br /&gt;
Matthias - When is there going to be a good guideline on how to build extensions with meson?&lt;br /&gt;
&lt;br /&gt;
Peter E - In the fullness of time.&lt;br /&gt;
&lt;br /&gt;
Matthias - Have that for make but don&#039;t see that for meson.&lt;br /&gt;
&lt;br /&gt;
Peter E - No need to actually do that really.&lt;br /&gt;
&lt;br /&gt;
Berg - Quite a few extensions are pretty small and some are using cmake and larger extensions need more research anyway and many extensions are too small to really benefit from meson anyway.&lt;br /&gt;
&lt;br /&gt;
Peter E - What would be interesting would be to get these extensions working with meson to get Windows support for them as many could work on Windows but don&#039;t just because of the build issues that meson might fix.&lt;br /&gt;
&lt;br /&gt;
Magnus - Would be good to have something like pgxs that&#039;s built on meson but pgxs is pretty fundamentally built on make files.&lt;br /&gt;
&lt;br /&gt;
Matthias - Tried to get make files working on mac, then tried to use meson for an extension, didn&#039;t get it to work, copied one of the files from the PG project and was able to make it work but wasn&#039;t ideal.&lt;br /&gt;
&lt;br /&gt;
Magnus - Would be nice to have a tool to take pgxs makefile and convert it to meson if possible.  Simple makefiles it might be possible to do the conversion.  More complex makefiles need additional research.  Would be useful to have that tool though.&lt;br /&gt;
&lt;br /&gt;
=== Built-in collation provider for &amp;quot;C&amp;quot; and &amp;quot;C.UTF-8&amp;quot; ===&lt;br /&gt;
&lt;br /&gt;
Jeff - Talk about C.UTF-8 built-in collation provider.  If you take aside collation and consider just other unicode functions- initcap, regular expressions, other parts of the backend use ascii sometimes and use the database default collation provider and use those for various things, adjusting characters to try to treat international characters better.  All these other behaviors are still quite important and we are doing everything through libc or ICU and we can&#039;t document or test any of that in much the same way we do it for collations.  We have all these problems not just for collations but also for all these behaviors because of the collation providers.  This is difficult because you can&#039;t provide simple examples for functions.  The other behavior is pretty easy to build in though.  Collation carries a lot of other complications but these other unicode operations are generally just lookup tables with a few exceptions.  Unless you&#039;re trying to localize upper/lower functions, in general it&#039;s basically always the same.  There were very few cases where upper/lower did something different for every locale on a given system (eg: Turkish).  Essentially saying that we could probably build-in these basic/default unicode behavior in a maintainable way by basically importing these lookup tables.  We would also get a performance benefit by doing this.  All of this setting aside collation, which does carry a lot of other complexity, but we could at least solve these non-collation behavior issues ourselves and solve that problem.  We would still provide the ability to use libc or ICU for localized collation and other unicode behaviors but this would allow us to have our own built-in provider instead.  This would be a better version of what C.UTF-8 locale offers, essentially, as it would be built-in and we could document it and test it.  Have discussed it on the list and gotten some support for it from a useability standpoint and developer standpoint.  Have also had some concerns raised but think those have been mainly responded to.  Not a solution to the collation problem but instead all of the other issues around there.  For collation, this would essentially be the C collation.  For a database it&#039;s often difficult to chose a locale anyway.  Often isn&#039;t really possible to pick a single collation for a whole database anyway.&lt;br /&gt;
&lt;br /&gt;
Peter E - What is the difference between this and the C.UTF-8 locale?&lt;br /&gt;
&lt;br /&gt;
Jeff - The C.UTF-8 has changed the collation before, for one thing.&lt;br /&gt;
&lt;br /&gt;
Peter E - Example?&lt;br /&gt;
&lt;br /&gt;
Munro - Independent libraries may have created C.UTF-8 locales and some project (Debian?) created one first and then glibc added support for it later but it was a bit different and then Debian dropped their patches for it and that changed things.&lt;br /&gt;
&lt;br /&gt;
Peter E - More of a bootstrap problem?&lt;br /&gt;
&lt;br /&gt;
Munro - Yeah, may be able to just ignore that issue as just being a historical problem.&lt;br /&gt;
&lt;br /&gt;
Jeff - Anyone who is using C.UTF-8 today, this built-in provider would just be flat-out better always.  Wouldn&#039;t have the risk of such a historical thing happening, at least, and we would be matching the version of unicode that this locale uses with the version of unicode that PG uses for normalization.  Risk of these changes would be low.  As new versions of unicode come out, this would be updated.  This would allow us to avoid those changes happening at the OS level under us and instead we could document it as part of PG releases.  We could then also document these changes as part of PG documentation.  Unicode has quite strong guarantees around this behavior but won&#039;t say that it won&#039;t ever break especially around undefined unicode codepoints.&lt;br /&gt;
&lt;br /&gt;
Munro - Think it&#039;s a really cool idea but for another reason- kill Windows locale support.  It&#039;s completely unmaintained and it&#039;s unloved and would be great to just get rid of it and instead offer a built-in consistent option.  If you don&#039;t want that, then you should just use ICU.&lt;br /&gt;
&lt;br /&gt;
Jeff - Other aspects - this would also be available on all platforms, such as Mac which doesn&#039;t have C.UTF-8.  Available beyond just glibc users.  Collation is still an important topic and you would probably still want to use ICU for collation as it&#039;s just preferable for natural language and it&#039;s also a lot better than libc.  You could use COLLATE clauses to get that natural ordering that you want.  Another benefit to that is that applying the COLLATE clause to the query itself avoids issues with indexes.  The sort step would end up being the final thing.  Quite often that could end up being a better performing plan, even if using ICU which is faster than libc, but it&#039;s still going to be slower than using C locale and if that is what matters for a particular operation that could be much better performing.&lt;br /&gt;
&lt;br /&gt;
Peter E - Hard disagree on that, can see the technical appeal of adding it just to have it but not sure that anyone would really actually use it.  Expecting people to have to explicitly say COLLATE to get natural language sorting isn&#039;t going to go over well because we&#039;ve been trying to get to a point where they don&#039;t have to explicitly ask for it.&lt;br /&gt;
&lt;br /&gt;
Jeff - This is more for people who are using C.UTF-8 now really.  Not trying to say we&#039;re really changing any defaults at all.  For people who have a database default collation of C.UTF-8 today this would make more sense.&lt;br /&gt;
&lt;br /&gt;
Peter E - Who is actually using that?&lt;br /&gt;
&lt;br /&gt;
Jeff - Don&#039;t have specific numbers but think it&#039;s a pretty normal configuration as it performs better.&lt;br /&gt;
&lt;br /&gt;
Matthias - If I don&#039;t care about natural ordering but just care about seeing similar things together.&lt;br /&gt;
&lt;br /&gt;
Peter E - Maybe as a DBA but probably not the case as an application developer.&lt;br /&gt;
&lt;br /&gt;
Matthias - I don&#039;t really care about real collation in my apps generally.&lt;br /&gt;
&lt;br /&gt;
Berg - If you&#039;re running a server for the world then perhaps it&#039;s fine.&lt;br /&gt;
&lt;br /&gt;
Peter E - Maybe we do this for v1 but in v2 add in full support.&lt;br /&gt;
&lt;br /&gt;
Jeff - Don&#039;t want to rule out that possibility.  Reasonable thing to consider but the issue is then maintenance of it.  Would need enough people comfortable with that part of the code base to be able to maintain it.  The root collation - unicode has all sorts of defaults for everything and it calls them defaults and as an example: France region of the French language has the same collation as the English language of the English language in the US.  Not a linguist but the collation order is the same in both cases and is just the &#039;root&#039; collation.  Unicode has these defaults and they&#039;re meant as a guide but they&#039;re careful about calling things a default but they do have some kind of a default.  The root collation order would be a great natural language sort order to provide by default by the project, but ICU offers that.  libc does not offer that.  No way to get root collation order from libc.&lt;br /&gt;
&lt;br /&gt;
Peter E - No obvious way to ask for it but you could get it from libc by asking for like French.&lt;br /&gt;
&lt;br /&gt;
Munro - A good number of different things are just symlinks between each other.&lt;br /&gt;
&lt;br /&gt;
Jeff - Some people might just not include those locales.  If there was to be a &#039;default default&#039; then that might be a reasonable thing to have like ICU or we could consider what that would look like to build into PG overall.  Happy to contribute and work on that and think it would be useful to go down that road, but don&#039;t want to promise that.  Proposal for v17 is not that and don&#039;t want to promise that we would get there.&lt;br /&gt;
&lt;br /&gt;
Munro - The obvious alternative would be to just say use ICU more and perhaps make it the default too.  We could provide a different provider that uses ICU code for things but then we would be using ICU&#039;s version.&lt;br /&gt;
&lt;br /&gt;
Jeff - One big benefit would be putting the unicode versions in lock-step which we wouldn&#039;t be able to do if we&#039;re using external dependencies.  Big thing I like about this proposal is being able to document all of this, including things like being able to document how to do regexps with different locales.  The idea that this would be documentable is a huge benefit but we can&#039;t get that with any dependency.&lt;br /&gt;
&lt;br /&gt;
Munro - Sounds great when you talk about just basic C type but when we start talking about taking this further then maybe we should just buy into ICU more.&lt;br /&gt;
&lt;br /&gt;
Matthias - Recently ICU had a release where they changed but they didn&#039;t change the identifier.&lt;br /&gt;
&lt;br /&gt;
Joe - Every other database has the option to have a built-in collation and locale support.  PG is really the only one that doesn&#039;t.&lt;br /&gt;
&lt;br /&gt;
Munro - All those other ones suck though and they&#039;re poorly understood.&lt;br /&gt;
&lt;br /&gt;
Jeff - Concern raised about having a built-in root collation because that might blur the line between using ICU and using built-in provider.  Agree with that and after thinking about it we are not likely to want the tailoring and localization as ICU is going to be better at that and would want to push people towards ICU.  Trying to own all the issues with ICU seems like a lot of work.&lt;br /&gt;
&lt;br /&gt;
Berg - What you might do is have an internal techincal collation when the database does sorting on its own when it isn&#039;t asked for it (like for GROUP BY), maybe always use C locale for that?&lt;br /&gt;
&lt;br /&gt;
Matthias - Using the GROUP BY with an ORDER BY might be much slower then&lt;br /&gt;
&lt;br /&gt;
Stephen - But explicit idea is to only do this when not being asked for an ordering and no ORDER BY included.&lt;br /&gt;
&lt;br /&gt;
Jeff - Similar case for indexes, if it&#039;s only for internal usage and not for other cases, but there was concern about teaching the planner how to do this and choose the right option.  You&#039;d have to decorate paths with knowledge of where we can do this and where we can&#039;t do this and we would add complexity and possibly bugs into the planner around this.  This might be able to be overcome though and could provide some serious performance benefits.  Another way to think about this is that we do something similar for hashing operations- we only use the specific functions if the collation is non-deterministic but for deterministic collations we just use generic hashing.&lt;br /&gt;
&lt;br /&gt;
Matthias - Original proposal was to make primary key text indexes use this&lt;br /&gt;
&lt;br /&gt;
Jeff - Wasn&#039;t exactly part of the proposal but the thread took off a bit.  Without bringing up the thread specifically and such, there was a realization that we are accepting a lot of potential downsides with the risks associated with using a non-C collation for indexes and in other cases because when a collation changes then the index breaks.  Also imposing a performance cost associated with building the index and also the cost of the index becoming corrupted due to changes.  What I was trying to get across in the thread was to think about this cost/benefit question between these risks and costs which are imposed on all of these text indexes which may result in only very small benefits.&lt;br /&gt;
&lt;br /&gt;
Joe - ICU in some cases it&#039;s 10x faster than glibc and so there&#039;s also the issue that many many people are using glibc.&lt;br /&gt;
&lt;br /&gt;
Bruce - Yeah, you&#039;re bringing in the cost in terms of performance and the corruption risk for pretty limited benefit.&lt;br /&gt;
&lt;br /&gt;
Jeff - Mostly for primary keys it&#039;s just an equality lookup and so this ends up being very impactful.  There was a lot in the thread and we could also discuss later.&lt;br /&gt;
&lt;br /&gt;
Munro - Attempting to predict what the user is going to do with the data.  Maybe have a distinction between text and &#039;human text&#039; or such.&lt;br /&gt;
&lt;br /&gt;
Jeff - Not quite type or what the user is going to do with it..&lt;br /&gt;
&lt;br /&gt;
Munro - User could say &#039;collate C&#039;..&lt;br /&gt;
&lt;br /&gt;
Jeff - Then you have a lot of extra typing to say COLLATE C for a lot of keys and then FKs, etc.  All somewhat related at least.  Very messy problem.  ICU built by default in v16 which is a big step as libc is just really not good.  More ICU would be great.  One of the problems is that ICU doesn&#039;t support the C locale.  Today we can&#039;t do away with libc support because a lot of people use C.UTF-8.  With this proposal, people could use ICU or use the built-in provider and get rid of libc support.&lt;br /&gt;
&lt;br /&gt;
Vondra - One of the main problems that I had with the proposal is that it seemed like &amp;quot;if user does not specify locale, then if the user didn&#039;t specify the locale then we just change it to whatever is faster&amp;quot; which seems a bit strange.  Reasonable expectation of user is that the database is created with a specific locale, then everything will use that as the default.  A lot of users specify it at the database level and expect it to work using that locale for everything in that database.  Would be ok with changing the implementation detail as long as it keeps the same result.  Would be really surprising for users though would be changing to something faster but changes the ordering.&lt;br /&gt;
&lt;br /&gt;
Jeff - Database-level collation must be honored and so we would not be changing that.&lt;br /&gt;
&lt;br /&gt;
Vondra - What thought the problem was is that there was a misunderstanding around that.&lt;br /&gt;
&lt;br /&gt;
Jeff - Agreed that the discussion needs to be framed better to make it clear that this wasn&#039;t intended as impacting users in that way.&lt;br /&gt;
&lt;br /&gt;
Matthias - Regarding new built-in locale - not sure we should use the C or C.UTF-8 as the name.&lt;br /&gt;
&lt;br /&gt;
Peter E - Maybe use binary or something instead of C&lt;br /&gt;
&lt;br /&gt;
Matthias - It&#039;ll exist everywhere and naming it as C or C.UTF-8 is not very user friendly.&lt;br /&gt;
&lt;br /&gt;
Jeff - This capability isn&#039;t really accounted for in the SQL.  Would be interesting to think about another way to specify the behavior of upper/lower.  Could imagine one day maybe say just using the unicode data files and not have any dependency for upper/lower but also have support for things like the greek difference.  Regarding renaming, pretty much fine with whatever name we pick.  The SQL specifies only one example of the german capital S ... If we do choose names then we should try to leave room for possible variants.&lt;br /&gt;
&lt;br /&gt;
Peter E - I&#039;ve now signed up as a reviewer...&lt;br /&gt;
&lt;br /&gt;
=== CREATE SUBSCRIPTION ... SERVER ===&lt;br /&gt;
&lt;br /&gt;
Jeff - This is already being discussed on the list and it is changing a bit in direction thanks to that discussion.  No real dispute around this patch.  In the spirit of this meeting, decided to throw this topic out there in case someone wanted to discuss it.  Not very controversial.  Some of the original patch got some feedback about going in a bit of a different direction with only minor core changes and that&#039;s actually the direction that it&#039;s going in.&lt;br /&gt;
&lt;br /&gt;
Peter E - Proposed something similar before and therefore generally happy with it.&lt;br /&gt;
&lt;br /&gt;
=== The Path to un-reverting the MAINTAIN privilege ===&lt;br /&gt;
&lt;br /&gt;
=== Moving Forward with Pending Patches ===&lt;br /&gt;
&lt;br /&gt;
(Unknown: &amp;quot;I have encountered a situation where some of my patches have not been reviewed by others, preventing them from moving forward.  I believe this is a common challenge faced by other developers as well.  It would be great if we could engage in a discussion about this and potentially brainstorm ideas to improve it.&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Note from Daniel: &amp;quot;This was proposed by a hacker who was unable to attend&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
=== Recognizing New Contributors ===&lt;br /&gt;
&lt;br /&gt;
(Unknown: &amp;quot;Many active developers, including myself, desire to be listed as a Contributor, but just do not know how.  This lack of clarity can be confusing.  I&#039;m wondering if it&#039;s possible to have a discussion on how to effectively recognize and acknowledge new contributors.&amp;quot;). &lt;br /&gt;
&lt;br /&gt;
Note from Daniel: &amp;quot;This was proposed by that same person, and since he isn&#039;t able to attend I don&#039;t think it&#039;s fair to identify him (I did promise I&#039;d bring this up anonymously to put focus on the issue and not the person).  This is a person who I can vouch for being very active, prolific enough to show up on Roberts recent &amp;quot;Who contributed to..&amp;quot; blogpost.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Page Features / Reserve space on page ===&lt;br /&gt;
&lt;br /&gt;
=== TDE / IVs / More ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== v17 Patch Triage ===&lt;br /&gt;
&lt;br /&gt;
=== Any other business &amp;amp; close ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Developer Meeting]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=FOSDEM/PGDay_2024_Developer_Meeting&amp;diff=38628</id>
		<title>FOSDEM/PGDay 2024 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=FOSDEM/PGDay_2024_Developer_Meeting&amp;diff=38628"/>
		<updated>2024-02-01T11:03:55Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* FOSDEM 2024 Developer Meeting schedule by Time and Room */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== FOSDEM 2024 Developer Meeting schedule by Time and Room ==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Studio 4&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:lightgray;&amp;quot;&lt;br /&gt;
|Thur 9:00-9:10&lt;br /&gt;
|Welcome and Introductions&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 9:10-9:30&lt;br /&gt;
|Property Graph Queries (Vik)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 9:30-10:00&lt;br /&gt;
|Binary format output per session (Dave C)&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:lightgray;&amp;quot;&lt;br /&gt;
|Thur 10:00&lt;br /&gt;
|Coffee&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 10:30-11:00&lt;br /&gt;
|Meson and packaging (Devrim)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 11:00-11:30&lt;br /&gt;
|Built-in collation provider for &amp;quot;C&amp;quot; and &amp;quot;C.UTF-8&amp;quot; (Jeff)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 11:30-12:00&lt;br /&gt;
|CREATE SUBSCRIPTION ... SERVER (Jeff)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 12:00-12:30&lt;br /&gt;
|The Path to un-reverting the MAINTAIN privilege (Nathan)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:lightgray;&amp;quot;&lt;br /&gt;
|Thur 12:30-13:30&lt;br /&gt;
|Lunch&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 13:30-13:45&lt;br /&gt;
|Moving Forward with Pending Patches (Unknown: &amp;quot;I have encountered a situation where some of my patches have not been reviewed by others, preventing them from moving forward.  I believe this is a common challenge faced by other developers as well.  It would be great if we could engage in a discussion about this and potentially brainstorm ideas to improve it.&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Note from Daniel: &amp;quot;This was proposed by a hacker who was unable to attend&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 13:45-14:00&lt;br /&gt;
|Recognizing New Contributors (Unknown: &amp;quot;Many active developers, including myself, desire to be listed as a Contributor, but just do not know how.  This lack of clarity can be confusing.  I&#039;m wondering if it&#039;s possible to have a discussion on how to effectively recognize and acknowledge new contributors.&amp;quot;). &lt;br /&gt;
&lt;br /&gt;
Note from Daniel: &amp;quot;This was proposed by that same person, and since he isn&#039;t able to attend I don&#039;t think it&#039;s fair to identify him (I did promise I&#039;d bring this up anonymously to put focus on the issue and not the person).  This is a person who I can vouch for being very active, prolific enough to show up on Roberts recent &amp;quot;Who contributed to..&amp;quot; blogpost.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:white;&amp;quot;&lt;br /&gt;
|Thur 14:00-14:15&lt;br /&gt;
|Page Features / Reserve space on page&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:white;&amp;quot;&lt;br /&gt;
|Thur 14:15-14:30&lt;br /&gt;
|Thomas&#039; other thing.&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:white;&amp;quot;&lt;br /&gt;
|Thur 14:30-15:00&lt;br /&gt;
|TDE / IVs / More&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:lightgray;&amp;quot;&lt;br /&gt;
|Thur 15:00&lt;br /&gt;
|Tea&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:white;&amp;quot;&lt;br /&gt;
|Thur 15:30-16:45&lt;br /&gt;
|v17 Patch Triage&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:white;&amp;quot;&lt;br /&gt;
|Thur 16:45-17:00&lt;br /&gt;
|Any other business &amp;amp; close.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Suggested topics ==&lt;br /&gt;
&lt;br /&gt;
* Patch Triage&lt;br /&gt;
* Moving Forward with Pending Patches&lt;br /&gt;
* Recognizing New Contributors&lt;br /&gt;
* What&#039;s new in SQL:2023&lt;br /&gt;
* Binary format output per session&lt;br /&gt;
* Meson and packaging&lt;br /&gt;
* Developer Meeting during PGConf Europe&lt;br /&gt;
* Page Features / Reserve space on page&lt;br /&gt;
* TDE&lt;br /&gt;
&lt;br /&gt;
== Notes/Minutes ==&lt;br /&gt;
&lt;br /&gt;
=== Property Graph Queries ===&lt;br /&gt;
&lt;br /&gt;
Vik&#039;s presentation on SQL/PGQ - Property Graph Queries which is a new addition to SQL added into SQL 2023.&lt;br /&gt;
&lt;br /&gt;
Goes over differences between the relational model and the graph model, talks about GQL (Graph Query Language), then about how to turn GQL queries into SQL/PGQ.&lt;br /&gt;
&lt;br /&gt;
Discussion about implementation in the PG parser, how the definition of the property graphs works, what a PG implementation may look like, etc.&lt;br /&gt;
&lt;br /&gt;
=== Binary format output per session ===&lt;br /&gt;
&lt;br /&gt;
Dave C - Few years ago put out what all interfaces want.  What all interfaces want is to get all info back in binary.  Today everything comes back as text by default.  JDBC and other drivers have to use extended query protocol and send a describe message (extra round-trip) to get data back in binary.  In Java world, nearly everything comes back as text to avoid the extra round-trip.  PGVector would benefit a lot from returning the data as binary instead of text due to it being lots of floats.  Put together naive patch to use a GUC to pick OIDs to return as binary at the start of the session.  Other interfaces have also looked at it- JDBC, npgsql (?) seem to like it.  Doesn&#039;t seem like GUC is necessarily the best way to do this but would be good to do something.&lt;br /&gt;
&lt;br /&gt;
Peter E - Wrote email in Oct about this, quick summary: using a GUC is complicated because it ends up being best-effort.  Many patches for this exist and need to consider connection poolers too.  Discussion of making it a new protocol setting but we are not really ready to extend the protocol in the way we want to.&lt;br /&gt;
&lt;br /&gt;
Dave C - Don&#039;t see being able to extend the protocol?&lt;br /&gt;
&lt;br /&gt;
Peter E - Not sure.  How to identify the types- names?  OIDs?  What is the OID ends up being different in different systems due to extensions?  Haven&#039;t considered that part of it.  Independent install of postgis into separate systems you&#039;ll get different OIDs, names you have to deal with schemas too, etc.  One idea- Fixed UUIDv4 type that would be global?  Want to have this be some kind of session property though.  Don&#039;t want to ship this request with every query.  Not a lot of session state in the protocol, not much precedent for it.  Column-encryption has a similar issue.  Have to hook session state in with the discard command and other things.  Maybe could work similar to client encoding?  Client communicates to server what client encoding it supports.  Client encoding isn&#039;t terribly robust and there are concerns with using that approach but there are a lot of edge cases.&lt;br /&gt;
&lt;br /&gt;
Dave C - That&#039;s a challenge but the benefit is universal and quite large.&lt;br /&gt;
&lt;br /&gt;
Peter E - Could just make this a connection option.&lt;br /&gt;
&lt;br /&gt;
Dave C - That would be ok too.&lt;br /&gt;
&lt;br /&gt;
Matthias - No type that doesn&#039;t have binary.&lt;br /&gt;
&lt;br /&gt;
Peter E - Most do but some extensions may not.&lt;br /&gt;
&lt;br /&gt;
Matthias - When we flush the datum it&#039;s binary&lt;br /&gt;
&lt;br /&gt;
Peter E - No, it&#039;s the send/recv functions that we&#039;re talking about, not the internal.&lt;br /&gt;
&lt;br /&gt;
Dave C - Current default is we send everything as text.&lt;br /&gt;
&lt;br /&gt;
Nathan - If everything including extensions seems to have binary support then maybe that isn&#039;t a huge issue..&lt;br /&gt;
&lt;br /&gt;
Peter E - Maybe just have a flag that says everything comes back as binary?&lt;br /&gt;
&lt;br /&gt;
Dave C - Would work for me.&lt;br /&gt;
&lt;br /&gt;
Alvaro - What about pgbouncer?&lt;br /&gt;
&lt;br /&gt;
Peter E - Would still have to track it but would have only one flag to track.&lt;br /&gt;
&lt;br /&gt;
Magnus - Maybe have to have separate pools, one for binary one for text.&lt;br /&gt;
&lt;br /&gt;
Peter E - Need to think about it but maybe, but would probably be simpler with just one flag to deal with.  Maybe survey how many types have binary support and how many have text and how many have both.  Does JDBC driver use simple queries sometime?&lt;br /&gt;
&lt;br /&gt;
Dave C - Yes, sometimes it does use simple queries.&lt;br /&gt;
&lt;br /&gt;
Alvaro - Why use simple query?&lt;br /&gt;
&lt;br /&gt;
Dave C - Extended query can do odd things sometimes.  Mainly use it for isvalid (checking if the connection is valid).&lt;br /&gt;
&lt;br /&gt;
Peter E - Maybe change the client to always use extended query and then send every query saying to have the query be returned in binary.&lt;br /&gt;
&lt;br /&gt;
Dave C - Wasn&#039;t aware that it was possible to do everything as binary, very curious how that works.&lt;br /&gt;
&lt;br /&gt;
Matthias - How does the driver know about the new type?  Register it?&lt;br /&gt;
&lt;br /&gt;
Peter E - Trying to get away from having to register it.&lt;br /&gt;
&lt;br /&gt;
Dave C - Shouldn&#039;t matter because you wouldn&#039;t have a query asking for something that the driver doesn&#039;t have a decoder for.  Very few types that are actually new, most use floats, et al.&lt;br /&gt;
&lt;br /&gt;
Matthias - At least now you only use the binary types if you know you can handle it.&lt;br /&gt;
&lt;br /&gt;
Dave C - The person who wrote the application is going to know that they&#039;ll be able to handle the type that they are querying for.&lt;br /&gt;
&lt;br /&gt;
Magnus - Might have to make it optional in the driver if you&#039;re using an unknown extension.&lt;br /&gt;
&lt;br /&gt;
Dave C - Yeah, if something new was introduced then the app would break and have to be fixed if something new happened.  Or it would use text.&lt;br /&gt;
&lt;br /&gt;
Alvaro - New developer adds new table with query and the app breaks or gets much slower?&lt;br /&gt;
&lt;br /&gt;
Dave C - Wouldn&#039;t get slower, developer would have to either add the decoder or actually select that it&#039;s text and then deal with it being slower.  With Java/JDBC, application could register a new decoder.&lt;br /&gt;
&lt;br /&gt;
Munro - What about OIDs being reused?  No validation machinery.&lt;br /&gt;
&lt;br /&gt;
Peter E - Nothing in the protocol handles that today.  Maybe drivers already basically hard-code things.&lt;br /&gt;
&lt;br /&gt;
Matthias - For OIDs under the FirstValidUserOid (sp?) those won&#039;t ever change, only an issue for extensions adding/dropping extensions really.&lt;br /&gt;
&lt;br /&gt;
Discussion about having some kind of permanent identifier for types.  (Peter E, Munro, Magnus, Matthias)&lt;br /&gt;
&lt;br /&gt;
Munro - Maybe some kind of number assigning authority..&lt;br /&gt;
&lt;br /&gt;
Matthias - Redo manager has a wiki page for extensions to use.&lt;br /&gt;
&lt;br /&gt;
Magnus - Works because there&#039;s very few users who need those.&lt;br /&gt;
&lt;br /&gt;
Peter E - All of this would require some protocol changes.  Would still need to wait for the older things out there to die off that doesn&#039;t support protocol changes.&lt;br /&gt;
&lt;br /&gt;
Dave C - How old are those things?&lt;br /&gt;
&lt;br /&gt;
Joe - Maybe client that ships with RHEL 7 or something?&lt;br /&gt;
&lt;br /&gt;
Matthias - Any plans or ideas regarding update of our row send format because it&#039;s 4 bytes per field which is a lot of overhead but maybe we could reduce that somehow?  No specific proposal for specific changes but am curious if there&#039;s interest in adding a new row message type for smaller data where the message itself has less overhead.  Everything today works by handling up to a gigabyte per field but in some cases we don&#039;t need anywhere near that much.  Stephen - Like VARLEN, Magnus - yea, Matthias - Similar to this, maybe also be able to do column compression somehow.&lt;br /&gt;
&lt;br /&gt;
Dave C - Have thought about larger protocol changes&lt;br /&gt;
&lt;br /&gt;
Peter E - From Robert - Flat out not viable to bump the protocol version (email from 2024-01-16).&lt;br /&gt;
&lt;br /&gt;
Dave C - v16 is the first version that really handles protocol changes?&lt;br /&gt;
&lt;br /&gt;
Peter E - Yeah but even then not sure that it really works.  Certainly nothing before v16 in libpq would handle it.  Other drivers would have to deal with it too.&lt;br /&gt;
&lt;br /&gt;
Dave C - Maybe can just say to use the latest version for JDBC, at least.  This would mean we&#039;re locked into this for quite a while.&lt;br /&gt;
&lt;br /&gt;
Peter E - Much of this was back-patched in the middle of the prod releases and maybe if there&#039;s additional changes needed we could argue to back-patch those changes.&lt;br /&gt;
&lt;br /&gt;
Magnus - libpq needs to not fail with this is the main thing.&lt;br /&gt;
&lt;br /&gt;
Dave C - Have some research to do.&lt;br /&gt;
&lt;br /&gt;
=== Meson and packaging ===&lt;br /&gt;
&lt;br /&gt;
Devrim - Quick summary - started building packages 20-ish years ago, just the PG RPMS.  Now we have haproxy, consul, lots of other things.  200-300 packages for updates now.  Not about just meson but about most of the things.  Want to create a connection between the packagers and the developers.  Discussed ICU things with Jeff Davis in the past and with Munro regarding IBM things on the lists, this is great.  When there is a new feature like llvm in PG11, having the hackers tell the packagers is very helpful and if the packagers don&#039;t know then the packagers may not include support for those new features.  Packagers are reachable via wiki, packagers mailing list, etc.  Regarding meson- not following every email but trying to follow those regarding meson.  Wonder if PG17 will be built with meson?  Not just about meson but packagers should be included in discussion regarding versions of libraries like zlib.  We have a unified spec file for PG.  First question- is meson good enough to be used for the PG17 package?  What can we do to improve connection between hackers, users, and packagers.  Not just about PG but about also includes postgis and the various libraries that it uses and other extensions too.&lt;br /&gt;
&lt;br /&gt;
Peter E - meson is not 100% functional with the make build system for non-Windows platforms.  As of today, not sensible to use for official packages.  Possible that these issues will be fixed in time for PG17 but then we would be switching at the last minute.  Also need to check if all of the extensions work properly with meson build.  Maybe for v18 we switch early in the cycle for it.&lt;br /&gt;
&lt;br /&gt;
Berg - Tried meson but noticed that it doesn&#039;t support llvm which is a giant feature and stopped because of that.&lt;br /&gt;
&lt;br /&gt;
Alvaro - Need to make sure that once meson stuff is installed and you want to install an extension and is much harder to ensure that the extension can be built like pgxs, does it have support for meson and work?&lt;br /&gt;
&lt;br /&gt;
Peter E - Maybe switch early in v18 cycle and try to fix it up.&lt;br /&gt;
&lt;br /&gt;
Berg - As long as it is supposed to work then it&#039;s about fixing bugs.&lt;br /&gt;
&lt;br /&gt;
Peter E - Not worthwhile since llvm support just doesn&#039;t work at all right now.&lt;br /&gt;
&lt;br /&gt;
Alvaro - Can we insist on disallowing cross-compilation?&lt;br /&gt;
&lt;br /&gt;
Munro - Packagers mailing list is currently restricted but maybe we need one that isn&#039;t restricted for packaging discussions?&lt;br /&gt;
&lt;br /&gt;
Peter E - People can send to packagers ... and maybe CC other lists&lt;br /&gt;
&lt;br /&gt;
Magnus - Gets weird CC&#039;ing between lists that are private and not private&lt;br /&gt;
&lt;br /&gt;
Devrim - Not just about Berg and Devrim but there&#039;s lots of other packagers out there who are not just using the community packages.  More people need to be aware of this.  Experience so far is that not everyone is aware and we release and then other people come and ask Devrim about the new things in the spec file.  Don&#039;t expect me to follow everything though.&lt;br /&gt;
&lt;br /&gt;
Peter E - Existing packaging lists have very little traffic currently.  Packagers generally pull info from upstream through release notes and things, not the case that all of the hackers out there reach out to the packagers to tell them about new things.&lt;br /&gt;
&lt;br /&gt;
Devrim - If zlib is added as a specific library required then maybe the patch author should check out if the library is actually available on all of the different platforms or not.&lt;br /&gt;
&lt;br /&gt;
Berg - Maybe postgres can do better regarding having hackers communicating with our packagers.  Should packagers generally be expected to add new features?  Should some things not be enabled by default?  What about checksums?&lt;br /&gt;
&lt;br /&gt;
Peter E - Probably should just turn on all build-time options, but run-time options should be left as the PG defaults.&lt;br /&gt;
&lt;br /&gt;
Bruce - Release notes are written for a broad audience.  Not designed to show absolutely every build change or every config change.&lt;br /&gt;
&lt;br /&gt;
Munro - Perhaps there needs to be a new document.&lt;br /&gt;
&lt;br /&gt;
Bruce - Maybe.  Sometimes things are not added, because something that most users aren&#039;t going to see doesn&#039;t need to be included and we want to have the document be reasonable in terms of size.&lt;br /&gt;
&lt;br /&gt;
Peter E - We do have a section of incompatible changes, maybe we should have that be better organized.&lt;br /&gt;
&lt;br /&gt;
Bruce - Probably would be best as a separate document.&lt;br /&gt;
&lt;br /&gt;
Matthias - release notes for incompatible changes is much more user-focused.  Maybe put something like this at the end of the page.&lt;br /&gt;
&lt;br /&gt;
Bruce - How many people read the release notes?  Stephen - Lots.  Bruce - Only like dozens of people are needing this specific information while the release notes are for a much broader audience and so it would probably be better as a separate document.&lt;br /&gt;
&lt;br /&gt;
Jeff - Is the biggest issue the dependencies?&lt;br /&gt;
&lt;br /&gt;
Peter E - There are subsections not interesting to most people..  Bruce - Maybe we should remove those sections too then.&lt;br /&gt;
&lt;br /&gt;
Matthias - Minor release notes have things that are very detailed.&lt;br /&gt;
&lt;br /&gt;
Bruce - We include more detailed info because we don&#039;t expect them to re-test between minor versions, so we want to list things that people might run into when they do a minor release update.&lt;br /&gt;
&lt;br /&gt;
Matthias - Maybe we add a separate page for search-level compatibility issues, developer-level issues, extension authors.  Extensions being impacted by changes to internal structures.&lt;br /&gt;
&lt;br /&gt;
Peter E - Would never finish the release notes to include all those.&lt;br /&gt;
&lt;br /&gt;
Stephen - Extension authors should be following hackers or committers if they&#039;re using internal structures.&lt;br /&gt;
&lt;br /&gt;
Devrim - We build the beta packages and so it would be good to have the info about new switches that are added into configure before then.&lt;br /&gt;
&lt;br /&gt;
Magnus - Do we have a process for adding things to buildfarm animals in terms of switches?&lt;br /&gt;
&lt;br /&gt;
Matthias - Hackers who add the feature tend to add that option to their buildfarm animals.&lt;br /&gt;
&lt;br /&gt;
Munro - Or the hacker adding things has to reach out to buildfarm animal maintainers and keep on them to fix their animals and add support.&lt;br /&gt;
&lt;br /&gt;
Matthias - When is there going to be a good guideline on how to build extensions with meson?&lt;br /&gt;
&lt;br /&gt;
Peter E - In the fullness of time.&lt;br /&gt;
&lt;br /&gt;
Matthias - Have that for make but don&#039;t see that for meson.&lt;br /&gt;
&lt;br /&gt;
Peter E - No need to actually do that really.&lt;br /&gt;
&lt;br /&gt;
Berg - Quite a few extensions are pretty small and some are using cmake and larger extensions need more research anyway and many extensions are too small to really benefit from meson anyway.&lt;br /&gt;
&lt;br /&gt;
Peter E - What would be interesting would be to get these extensions working with meson to get Windows support for them as many could work on Windows but don&#039;t just because of the build issues that meson might fix.&lt;br /&gt;
&lt;br /&gt;
Magnus - Would be good to have something like pgxs that&#039;s built on meson but pgxs is pretty fundamentally built on make files.&lt;br /&gt;
&lt;br /&gt;
Matthias - Tried to get make files working on mac, then tried to use meson for an extension, didn&#039;t get it to work, copied one of the files from the PG project and was able to make it work but wasn&#039;t ideal.&lt;br /&gt;
&lt;br /&gt;
Magnus - Would be nice to have a tool to take pgxs makefile and convert it to meson if possible.  Simple makefiles it might be possible to do the conversion.  More complex makefiles need additional research.  Would be useful to have that tool though.&lt;br /&gt;
&lt;br /&gt;
=== Built-in collation provider for &amp;quot;C&amp;quot; and &amp;quot;C.UTF-8&amp;quot; ===&lt;br /&gt;
&lt;br /&gt;
Jeff - Talk about C.UTF-8 built-in collation provider.  If you take aside collation and consider just other unicode functions- initcap, regular expressions, other parts of the backend use ascii sometimes and use the database default collation provider and use those for various things, adjusting characters to try to treat international characters better.  All these other behaviors are still quite important and we are doing everything through libc or ICU and we can&#039;t document or test any of that in much the same way we do it for collations.  We have all these problems not just for collations but also for all these behaviors because of the collation providers.  This is difficult because you can&#039;t provide simple examples for functions.  The other behavior is pretty easy to build in though.  Collation carries a lot of other complications but these other unicode operations are generally just lookup tables with a few exceptions.  Unless you&#039;re trying to localize upper/lower functions, in general it&#039;s basically always the same.  There were very few cases where upper/lower did something different for every locale on a given system (eg: Turkish).  Essentially saying that we could probably build-in these basic/default unicode behavior in a maintainable way by basically importing these lookup tables.  We would also get a performance benefit by doing this.  All of this setting aside collation, which does carry a lot of other complexity, but we could at least solve these non-collation behavior issues ourselves and solve that problem.  We would still provide the ability to use libc or ICU for localized collation and other unicode behaviors but this would allow us to have our own built-in provider instead.  This would be a better version of what C.UTF-8 locale offers, essentially, as it would be built-in and we could document it and test it.  Have discussed it on the list and gotten some support for it from a useability standpoint and developer standpoint.  Have also had some concerns raised but think those have been mainly responded to.  Not a solution to the collation problem but instead all of the other issues around there.  For collation, this would essentially be the C collation.  For a database it&#039;s often difficult to chose a locale anyway.  Often isn&#039;t really possible to pick a single collation for a whole database anyway.&lt;br /&gt;
&lt;br /&gt;
Peter E - What is the difference between this and the C.UTF-8 locale?&lt;br /&gt;
&lt;br /&gt;
Jeff - The C.UTF-8 has changed the collation before, for one thing.&lt;br /&gt;
&lt;br /&gt;
Peter E - Example?&lt;br /&gt;
&lt;br /&gt;
Munro - Independent libraries may have created C.UTF-8 locales and some project (Debian?) created one first and then glibc added support for it later but it was a bit different and then Debian dropped their patches for it and that changed things.&lt;br /&gt;
&lt;br /&gt;
Peter E - More of a bootstrap problem?&lt;br /&gt;
&lt;br /&gt;
Munro - Yeah, may be able to just ignore that issue as just being a historical problem.&lt;br /&gt;
&lt;br /&gt;
Jeff - Anyone who is using C.UTF-8 today, this built-in provider would just be flat-out better always.  Wouldn&#039;t have the risk of such a historical thing happening, at least, and we would be matching the version of unicode that this locale uses with the version of unicode that PG uses for normalization.  Risk of these changes would be low.  As new versions of unicode come out, this would be updated.  This would allow us to avoid those changes happening at the OS level under us and instead we could document it as part of PG releases.  We could then also document these changes as part of PG documentation.  Unicode has quite strong guarantees around this behavior but won&#039;t say that it won&#039;t ever break especially around undefined unicode codepoints.&lt;br /&gt;
&lt;br /&gt;
Munro - Think it&#039;s a really cool idea but for another reason- kill Windows locale support.  It&#039;s completely unmaintained and it&#039;s unloved and would be great to just get rid of it and instead offer a built-in consistent option.  If you don&#039;t want that, then you should just use ICU.&lt;br /&gt;
&lt;br /&gt;
Jeff - Other aspects - this would also be available on all platforms, such as Mac which doesn&#039;t have C.UTF-8.  Available beyond just glibc users.  Collation is still an important topic and you would probably still want to use ICU for collation as it&#039;s just preferable for natural language and it&#039;s also a lot better than libc.  You could use COLLATE clauses to get that natural ordering that you want.  Another benefit to that is that applying the COLLATE clause to the query itself avoids issues with indexes.  The sort step would end up being the final thing.  Quite often that could end up being a better performing plan, even if using ICU which is faster than libc, but it&#039;s still going to be slower than using C locale and if that is what matters for a particular operation that could be much better performing.&lt;br /&gt;
&lt;br /&gt;
Peter E - Hard disagree on that, can see the technical appeal of adding it just to have it but not sure that anyone would really actually use it.  Expecting people to have to explicitly say COLLATE to get natural language sorting isn&#039;t going to go over well because we&#039;ve been trying to get to a point where they don&#039;t have to explicitly ask for it.&lt;br /&gt;
&lt;br /&gt;
Jeff - This is more for people who are using C.UTF-8 now really.  Not trying to say we&#039;re really changing any defaults at all.  For people who have a database default collation of C.UTF-8 today this would make more sense.&lt;br /&gt;
&lt;br /&gt;
Peter E - Who is actually using that?&lt;br /&gt;
&lt;br /&gt;
Jeff - Don&#039;t have specific numbers but think it&#039;s a pretty normal configuration as it performs better.&lt;br /&gt;
&lt;br /&gt;
Matthias - If I don&#039;t care about natural ordering but just care about seeing similar things together.&lt;br /&gt;
&lt;br /&gt;
Peter E - Maybe as a DBA but probably not the case as an application developer.&lt;br /&gt;
&lt;br /&gt;
Matthias - I don&#039;t really care about real collation in my apps generally.&lt;br /&gt;
&lt;br /&gt;
Berg - If you&#039;re running a server for the world then perhaps it&#039;s fine.&lt;br /&gt;
&lt;br /&gt;
Peter E - Maybe we do this for v1 but in v2 add in full support.&lt;br /&gt;
&lt;br /&gt;
Jeff - Don&#039;t want to rule out that possibility.  Reasonable thing to consider but the issue is then maintenance of it.  Would need enough people comfortable with that part of the code base to be able to maintain it.  The root collation - unicode has all sorts of defaults for everything and it calls them defaults and as an example: France region of the French language has the same collation as the English language of the English language in the US.  Not a linguist but the collation order is the same in both cases and is just the &#039;root&#039; collation.  Unicode has these defaults and they&#039;re meant as a guide but they&#039;re careful about calling things a default but they do have some kind of a default.  The root collation order would be a great natural language sort order to provide by default by the project, but ICU offers that.  libc does not offer that.  No way to get root collation order from libc.&lt;br /&gt;
&lt;br /&gt;
Peter E - No obvious way to ask for it but you could get it from libc by asking for like French.&lt;br /&gt;
&lt;br /&gt;
Munro - A good number of different things are just symlinks between each other.&lt;br /&gt;
&lt;br /&gt;
Jeff - Some people might just not include those locales.  If there was to be a &#039;default default&#039; then that might be a reasonable thing to have like ICU or we could consider what that would look like to build into PG overall.  Happy to contribute and work on that and think it would be useful to go down that road, but don&#039;t want to promise that.  Proposal for v17 is not that and don&#039;t want to promise that we would get there.&lt;br /&gt;
&lt;br /&gt;
Munro - The obvious alternative would be to just say use ICU more and perhaps make it the default too.  We could provide a different provider that uses ICU code for things but then we would be using ICU&#039;s version.&lt;br /&gt;
&lt;br /&gt;
Jeff - One big benefit would be putting the unicode versions in lock-step which we wouldn&#039;t be able to do if we&#039;re using external dependencies.  Big thing I like about this proposal is being able to document all of this, including things like being able to document how to do regexps with different locales.  The idea that this would be documentable is a huge benefit but we can&#039;t get that with any dependency.&lt;br /&gt;
&lt;br /&gt;
Munro - Sounds great when you talk about just basic C type but when we start talking about taking this further then maybe we should just buy into ICU more.&lt;br /&gt;
&lt;br /&gt;
Matthias - Recently ICU had a release where they changed but they didn&#039;t change the identifier.&lt;br /&gt;
&lt;br /&gt;
Joe - Every other database has the option to have a built-in collation and locale support.  PG is really the only one that doesn&#039;t.&lt;br /&gt;
&lt;br /&gt;
Munro - All those other ones suck though and they&#039;re poorly understood.&lt;br /&gt;
&lt;br /&gt;
Jeff - Concern raised about having a built-in root collation because that might blur the line between using ICU and using built-in provider.  Agree with that and after thinking about it we are not likely to want the tailoring and localization as ICU is going to be better at that and would want to push people towards ICU.  Trying to own all the issues with ICU seems like a lot of work.&lt;br /&gt;
&lt;br /&gt;
Berg - What you might do is have an internal techincal collation when the database does sorting on its own when it isn&#039;t asked for it (like for GROUP BY), maybe always use C locale for that?&lt;br /&gt;
&lt;br /&gt;
Matthias - Using the GROUP BY with an ORDER BY might be much slower then&lt;br /&gt;
&lt;br /&gt;
Stephen - But explicit idea is to only do this when not being asked for an ordering and no ORDER BY included.&lt;br /&gt;
&lt;br /&gt;
Jeff - Similar case for indexes, if it&#039;s only for internal usage and not for other cases, but there was concern about teaching the planner how to do this and choose the right option.  You&#039;d have to decorate paths with knowledge of where we can do this and where we can&#039;t do this and we would add complexity and possibly bugs into the planner around this.  This might be able to be overcome though and could provide some serious performance benefits.  Another way to think about this is that we do something similar for hashing operations- we only use the specific functions if the collation is non-deterministic but for deterministic collations we just use generic hashing.&lt;br /&gt;
&lt;br /&gt;
Matthias - Original proposal was to make primary key text indexes use this&lt;br /&gt;
&lt;br /&gt;
Jeff - Wasn&#039;t exactly part of the proposal but the thread took off a bit.  Without bringing up the thread specifically and such, there was a realization that we are accepting a lot of potential downsides with the risks associated with using a non-C collation for indexes and in other cases because when a collation changes then the index breaks.  Also imposing a performance cost associated with building the index and also the cost of the index becoming corrupted due to changes.  What I was trying to get across in the thread was to think about this cost/benefit question between these risks and costs which are imposed on all of these text indexes which may result in only very small benefits.&lt;br /&gt;
&lt;br /&gt;
Joe - ICU in some cases it&#039;s 10x faster than glibc and so there&#039;s also the issue that many many people are using glibc.&lt;br /&gt;
&lt;br /&gt;
Bruce - Yeah, you&#039;re bringing in the cost in terms of performance and the corruption risk for pretty limited benefit.&lt;br /&gt;
&lt;br /&gt;
Jeff - Mostly for primary keys it&#039;s just an equality lookup and so this ends up being very impactful.  There was a lot in the thread and we could also discuss later.&lt;br /&gt;
&lt;br /&gt;
Munro - Attempting to predict what the user is going to do with the data.  Maybe have a distinction between text and &#039;human text&#039; or such.&lt;br /&gt;
&lt;br /&gt;
Jeff - Not quite type or what the user is going to do with it..&lt;br /&gt;
&lt;br /&gt;
Munro - User could say &#039;collate C&#039;..&lt;br /&gt;
&lt;br /&gt;
Jeff - Then you have a lot of extra typing to say COLLATE C for a lot of keys and then FKs, etc.  All somewhat related at least.  Very messy problem.  ICU built by default in v16 which is a big step as libc is just really not good.  More ICU would be great.  One of the problems is that ICU doesn&#039;t support the C locale.  Today we can&#039;t do away with libc support because a lot of people use C.UTF-8.  With this proposal, people could use ICU or use the built-in provider and get rid of libc support.&lt;br /&gt;
&lt;br /&gt;
Vondra - One of the main problems that I had with the proposal is that it seemed like &amp;quot;if user does not specify locale, then if the user didn&#039;t specify the locale then we just change it to whatever is faster&amp;quot; which seems a bit strange.  Reasonable expectation of user is that the database is created with a specific locale, then everything will use that as the default.  A lot of users specify it at the database level and expect it to work using that locale for everything in that database.  Would be ok with changing the implementation detail as long as it keeps the same result.  Would be really surprising for users though would be changing to something faster but changes the ordering.&lt;br /&gt;
&lt;br /&gt;
Jeff - Database-level collation must be honored and so we would not be changing that.&lt;br /&gt;
&lt;br /&gt;
Vondra - What thought the problem was is that there was a misunderstanding around that.&lt;br /&gt;
&lt;br /&gt;
Jeff - Agreed that the discussion needs to be framed better to make it clear that this wasn&#039;t intended as impacting users in that way.&lt;br /&gt;
&lt;br /&gt;
Matthias - Regarding new built-in locale - not sure we should use the C or C.UTF-8 as the name.&lt;br /&gt;
&lt;br /&gt;
Peter E - Maybe use binary or something instead of C&lt;br /&gt;
&lt;br /&gt;
Matthias - It&#039;ll exist everywhere and naming it as C or C.UTF-8 is not very user friendly.&lt;br /&gt;
&lt;br /&gt;
Jeff - This capability isn&#039;t really accounted for in the SQL.  Would be interesting to think about another way to specify the behavior of upper/lower.  Could imagine one day maybe say just using the unicode data files and not have any dependency for upper/lower but also have support for things like the greek difference.  Regarding renaming, pretty much fine with whatever name we pick.  The SQL specifies only one example of the german capital S ... If we do choose names then we should try to leave room for possible variants.&lt;br /&gt;
&lt;br /&gt;
Peter E - I&#039;ve now signed up as a reviewer...&lt;br /&gt;
&lt;br /&gt;
=== CREATE SUBSCRIPTION ... SERVER ===&lt;br /&gt;
&lt;br /&gt;
Jeff - This is already being discussed on the list and it is changing a bit in direction thanks to that discussion.  No real dispute around this patch.  In the spirit of this meeting, decided to throw this topic out there in case someone wanted to discuss it.  Not very controversial.  Some of the original patch got some feedback about going in a bit of a different direction with only minor core changes and that&#039;s actually the direction that it&#039;s going in.&lt;br /&gt;
&lt;br /&gt;
Peter E - Proposed something similar before and therefore generally happy with it.&lt;br /&gt;
&lt;br /&gt;
=== The Path to un-reverting the MAINTAIN privilege ===&lt;br /&gt;
&lt;br /&gt;
=== Moving Forward with Pending Patches ===&lt;br /&gt;
&lt;br /&gt;
(Unknown: &amp;quot;I have encountered a situation where some of my patches have not been reviewed by others, preventing them from moving forward.  I believe this is a common challenge faced by other developers as well.  It would be great if we could engage in a discussion about this and potentially brainstorm ideas to improve it.&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Note from Daniel: &amp;quot;This was proposed by a hacker who was unable to attend&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
=== Recognizing New Contributors ===&lt;br /&gt;
&lt;br /&gt;
(Unknown: &amp;quot;Many active developers, including myself, desire to be listed as a Contributor, but just do not know how.  This lack of clarity can be confusing.  I&#039;m wondering if it&#039;s possible to have a discussion on how to effectively recognize and acknowledge new contributors.&amp;quot;). &lt;br /&gt;
&lt;br /&gt;
Note from Daniel: &amp;quot;This was proposed by that same person, and since he isn&#039;t able to attend I don&#039;t think it&#039;s fair to identify him (I did promise I&#039;d bring this up anonymously to put focus on the issue and not the person).  This is a person who I can vouch for being very active, prolific enough to show up on Roberts recent &amp;quot;Who contributed to..&amp;quot; blogpost.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Page Features / Reserve space on page ===&lt;br /&gt;
&lt;br /&gt;
=== TDE / IVs / More ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== v17 Patch Triage ===&lt;br /&gt;
&lt;br /&gt;
=== Any other business &amp;amp; close ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Developer Meeting]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=FOSDEM/PGDay_2024_Developer_Meeting&amp;diff=38627</id>
		<title>FOSDEM/PGDay 2024 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=FOSDEM/PGDay_2024_Developer_Meeting&amp;diff=38627"/>
		<updated>2024-02-01T11:01:37Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* FOSDEM 2024 Developer Meeting schedule by Time and Room */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== FOSDEM 2024 Developer Meeting schedule by Time and Room ==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Studio 4&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:lightgray;&amp;quot;&lt;br /&gt;
|Thur 9:00-9:10&lt;br /&gt;
|Welcome and Introductions&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 9:10-9:30&lt;br /&gt;
|Property Graph Queries (Vik)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 9:30-10:00&lt;br /&gt;
|Binary format output per session (Dave C)&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:lightgray;&amp;quot;&lt;br /&gt;
|Thur 10:00&lt;br /&gt;
|Coffee&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 10:30-11:00&lt;br /&gt;
|Meson and packaging (Devrim)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 11:00-11:30&lt;br /&gt;
|Built-in collation provider for &amp;quot;C&amp;quot; and &amp;quot;C.UTF-8&amp;quot; (Jeff)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 11:30-12:00&lt;br /&gt;
|CREATE SUBSCRIPTION ... SERVER (Jeff)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 12:00-12:30&lt;br /&gt;
|The Path to un-reverting the MAINTAIN privilege (Nathan)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:lightgray;&amp;quot;&lt;br /&gt;
|Thur 12:30-13:30&lt;br /&gt;
|Lunch&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 13:30-13:45&lt;br /&gt;
|Moving Forward with Pending Patches (Unknown: &amp;quot;I have encountered a situation where some of my patches have not been reviewed by others, preventing them from moving forward.  I believe this is a common challenge faced by other developers as well.  It would be great if we could engage in a discussion about this and potentially brainstorm ideas to improve it.&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Note from Daniel: &amp;quot;This was proposed by a hacker who was unable to attend&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 13:45-14:00&lt;br /&gt;
|Recognizing New Contributors (Unknown: &amp;quot;Many active developers, including myself, desire to be listed as a Contributor, but just do not know how.  This lack of clarity can be confusing.  I&#039;m wondering if it&#039;s possible to have a discussion on how to effectively recognize and acknowledge new contributors.&amp;quot;). &lt;br /&gt;
&lt;br /&gt;
Note from Daniel: &amp;quot;This was proposed by that same person, and since he isn&#039;t able to attend I don&#039;t think it&#039;s fair to identify him (I did promise I&#039;d bring this up anonymously to put focus on the issue and not the person).  This is a person who I can vouch for being very active, prolific enough to show up on Roberts recent &amp;quot;Who contributed to..&amp;quot; blogpost.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:white;&amp;quot;&lt;br /&gt;
|Thur 14:00-14:30&lt;br /&gt;
|Page Features / Reserve space on page&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:white;&amp;quot;&lt;br /&gt;
|Thur 14:30-15:00&lt;br /&gt;
|TDE / IVs / More&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:lightgray;&amp;quot;&lt;br /&gt;
|Thur 15:00&lt;br /&gt;
|Tea&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:white;&amp;quot;&lt;br /&gt;
|Thur 15:30-16:45&lt;br /&gt;
|v17 Patch Triage&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:white;&amp;quot;&lt;br /&gt;
|Thur 16:45-17:00&lt;br /&gt;
|Any other business &amp;amp; close.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Suggested topics ==&lt;br /&gt;
&lt;br /&gt;
* Patch Triage&lt;br /&gt;
* Moving Forward with Pending Patches&lt;br /&gt;
* Recognizing New Contributors&lt;br /&gt;
* What&#039;s new in SQL:2023&lt;br /&gt;
* Binary format output per session&lt;br /&gt;
* Meson and packaging&lt;br /&gt;
* Developer Meeting during PGConf Europe&lt;br /&gt;
* Page Features / Reserve space on page&lt;br /&gt;
* TDE&lt;br /&gt;
&lt;br /&gt;
== Notes/Minutes ==&lt;br /&gt;
&lt;br /&gt;
=== Property Graph Queries ===&lt;br /&gt;
&lt;br /&gt;
Vik&#039;s presentation on SQL/PGQ - Property Graph Queries which is a new addition to SQL added into SQL 2023.&lt;br /&gt;
&lt;br /&gt;
Goes over differences between the relational model and the graph model, talks about GQL (Graph Query Language), then about how to turn GQL queries into SQL/PGQ.&lt;br /&gt;
&lt;br /&gt;
Discussion about implementation in the PG parser, how the definition of the property graphs works, what a PG implementation may look like, etc.&lt;br /&gt;
&lt;br /&gt;
=== Binary format output per session ===&lt;br /&gt;
&lt;br /&gt;
Dave C - Few years ago put out what all interfaces want.  What all interfaces want is to get all info back in binary.  Today everything comes back as text by default.  JDBC and other drivers have to use extended query protocol and send a describe message (extra round-trip) to get data back in binary.  In Java world, nearly everything comes back as text to avoid the extra round-trip.  PGVector would benefit a lot from returning the data as binary instead of text due to it being lots of floats.  Put together naive patch to use a GUC to pick OIDs to return as binary at the start of the session.  Other interfaces have also looked at it- JDBC, npgsql (?) seem to like it.  Doesn&#039;t seem like GUC is necessarily the best way to do this but would be good to do something.&lt;br /&gt;
&lt;br /&gt;
Peter E - Wrote email in Oct about this, quick summary: using a GUC is complicated because it ends up being best-effort.  Many patches for this exist and need to consider connection poolers too.  Discussion of making it a new protocol setting but we are not really ready to extend the protocol in the way we want to.&lt;br /&gt;
&lt;br /&gt;
Dave C - Don&#039;t see being able to extend the protocol?&lt;br /&gt;
&lt;br /&gt;
Peter E - Not sure.  How to identify the types- names?  OIDs?  What is the OID ends up being different in different systems due to extensions?  Haven&#039;t considered that part of it.  Independent install of postgis into separate systems you&#039;ll get different OIDs, names you have to deal with schemas too, etc.  One idea- Fixed UUIDv4 type that would be global?  Want to have this be some kind of session property though.  Don&#039;t want to ship this request with every query.  Not a lot of session state in the protocol, not much precedent for it.  Column-encryption has a similar issue.  Have to hook session state in with the discard command and other things.  Maybe could work similar to client encoding?  Client communicates to server what client encoding it supports.  Client encoding isn&#039;t terribly robust and there are concerns with using that approach but there are a lot of edge cases.&lt;br /&gt;
&lt;br /&gt;
Dave C - That&#039;s a challenge but the benefit is universal and quite large.&lt;br /&gt;
&lt;br /&gt;
Peter E - Could just make this a connection option.&lt;br /&gt;
&lt;br /&gt;
Dave C - That would be ok too.&lt;br /&gt;
&lt;br /&gt;
Matthias - No type that doesn&#039;t have binary.&lt;br /&gt;
&lt;br /&gt;
Peter E - Most do but some extensions may not.&lt;br /&gt;
&lt;br /&gt;
Matthias - When we flush the datum it&#039;s binary&lt;br /&gt;
&lt;br /&gt;
Peter E - No, it&#039;s the send/recv functions that we&#039;re talking about, not the internal.&lt;br /&gt;
&lt;br /&gt;
Dave C - Current default is we send everything as text.&lt;br /&gt;
&lt;br /&gt;
Nathan - If everything including extensions seems to have binary support then maybe that isn&#039;t a huge issue..&lt;br /&gt;
&lt;br /&gt;
Peter E - Maybe just have a flag that says everything comes back as binary?&lt;br /&gt;
&lt;br /&gt;
Dave C - Would work for me.&lt;br /&gt;
&lt;br /&gt;
Alvaro - What about pgbouncer?&lt;br /&gt;
&lt;br /&gt;
Peter E - Would still have to track it but would have only one flag to track.&lt;br /&gt;
&lt;br /&gt;
Magnus - Maybe have to have separate pools, one for binary one for text.&lt;br /&gt;
&lt;br /&gt;
Peter E - Need to think about it but maybe, but would probably be simpler with just one flag to deal with.  Maybe survey how many types have binary support and how many have text and how many have both.  Does JDBC driver use simple queries sometime?&lt;br /&gt;
&lt;br /&gt;
Dave C - Yes, sometimes it does use simple queries.&lt;br /&gt;
&lt;br /&gt;
Alvaro - Why use simple query?&lt;br /&gt;
&lt;br /&gt;
Dave C - Extended query can do odd things sometimes.  Mainly use it for isvalid (checking if the connection is valid).&lt;br /&gt;
&lt;br /&gt;
Peter E - Maybe change the client to always use extended query and then send every query saying to have the query be returned in binary.&lt;br /&gt;
&lt;br /&gt;
Dave C - Wasn&#039;t aware that it was possible to do everything as binary, very curious how that works.&lt;br /&gt;
&lt;br /&gt;
Matthias - How does the driver know about the new type?  Register it?&lt;br /&gt;
&lt;br /&gt;
Peter E - Trying to get away from having to register it.&lt;br /&gt;
&lt;br /&gt;
Dave C - Shouldn&#039;t matter because you wouldn&#039;t have a query asking for something that the driver doesn&#039;t have a decoder for.  Very few types that are actually new, most use floats, et al.&lt;br /&gt;
&lt;br /&gt;
Matthias - At least now you only use the binary types if you know you can handle it.&lt;br /&gt;
&lt;br /&gt;
Dave C - The person who wrote the application is going to know that they&#039;ll be able to handle the type that they are querying for.&lt;br /&gt;
&lt;br /&gt;
Magnus - Might have to make it optional in the driver if you&#039;re using an unknown extension.&lt;br /&gt;
&lt;br /&gt;
Dave C - Yeah, if something new was introduced then the app would break and have to be fixed if something new happened.  Or it would use text.&lt;br /&gt;
&lt;br /&gt;
Alvaro - New developer adds new table with query and the app breaks or gets much slower?&lt;br /&gt;
&lt;br /&gt;
Dave C - Wouldn&#039;t get slower, developer would have to either add the decoder or actually select that it&#039;s text and then deal with it being slower.  With Java/JDBC, application could register a new decoder.&lt;br /&gt;
&lt;br /&gt;
Munro - What about OIDs being reused?  No validation machinery.&lt;br /&gt;
&lt;br /&gt;
Peter E - Nothing in the protocol handles that today.  Maybe drivers already basically hard-code things.&lt;br /&gt;
&lt;br /&gt;
Matthias - For OIDs under the FirstValidUserOid (sp?) those won&#039;t ever change, only an issue for extensions adding/dropping extensions really.&lt;br /&gt;
&lt;br /&gt;
Discussion about having some kind of permanent identifier for types.  (Peter E, Munro, Magnus, Matthias)&lt;br /&gt;
&lt;br /&gt;
Munro - Maybe some kind of number assigning authority..&lt;br /&gt;
&lt;br /&gt;
Matthias - Redo manager has a wiki page for extensions to use.&lt;br /&gt;
&lt;br /&gt;
Magnus - Works because there&#039;s very few users who need those.&lt;br /&gt;
&lt;br /&gt;
Peter E - All of this would require some protocol changes.  Would still need to wait for the older things out there to die off that doesn&#039;t support protocol changes.&lt;br /&gt;
&lt;br /&gt;
Dave C - How old are those things?&lt;br /&gt;
&lt;br /&gt;
Joe - Maybe client that ships with RHEL 7 or something?&lt;br /&gt;
&lt;br /&gt;
Matthias - Any plans or ideas regarding update of our row send format because it&#039;s 4 bytes per field which is a lot of overhead but maybe we could reduce that somehow?  No specific proposal for specific changes but am curious if there&#039;s interest in adding a new row message type for smaller data where the message itself has less overhead.  Everything today works by handling up to a gigabyte per field but in some cases we don&#039;t need anywhere near that much.  Stephen - Like VARLEN, Magnus - yea, Matthias - Similar to this, maybe also be able to do column compression somehow.&lt;br /&gt;
&lt;br /&gt;
Dave C - Have thought about larger protocol changes&lt;br /&gt;
&lt;br /&gt;
Peter E - From Robert - Flat out not viable to bump the protocol version (email from 2024-01-16).&lt;br /&gt;
&lt;br /&gt;
Dave C - v16 is the first version that really handles protocol changes?&lt;br /&gt;
&lt;br /&gt;
Peter E - Yeah but even then not sure that it really works.  Certainly nothing before v16 in libpq would handle it.  Other drivers would have to deal with it too.&lt;br /&gt;
&lt;br /&gt;
Dave C - Maybe can just say to use the latest version for JDBC, at least.  This would mean we&#039;re locked into this for quite a while.&lt;br /&gt;
&lt;br /&gt;
Peter E - Much of this was back-patched in the middle of the prod releases and maybe if there&#039;s additional changes needed we could argue to back-patch those changes.&lt;br /&gt;
&lt;br /&gt;
Magnus - libpq needs to not fail with this is the main thing.&lt;br /&gt;
&lt;br /&gt;
Dave C - Have some research to do.&lt;br /&gt;
&lt;br /&gt;
=== Meson and packaging ===&lt;br /&gt;
&lt;br /&gt;
Devrim - Quick summary - started building packages 20-ish years ago, just the PG RPMS.  Now we have haproxy, consul, lots of other things.  200-300 packages for updates now.  Not about just meson but about most of the things.  Want to create a connection between the packagers and the developers.  Discussed ICU things with Jeff Davis in the past and with Munro regarding IBM things on the lists, this is great.  When there is a new feature like llvm in PG11, having the hackers tell the packagers is very helpful and if the packagers don&#039;t know then the packagers may not include support for those new features.  Packagers are reachable via wiki, packagers mailing list, etc.  Regarding meson- not following every email but trying to follow those regarding meson.  Wonder if PG17 will be built with meson?  Not just about meson but packagers should be included in discussion regarding versions of libraries like zlib.  We have a unified spec file for PG.  First question- is meson good enough to be used for the PG17 package?  What can we do to improve connection between hackers, users, and packagers.  Not just about PG but about also includes postgis and the various libraries that it uses and other extensions too.&lt;br /&gt;
&lt;br /&gt;
Peter E - meson is not 100% functional with the make build system for non-Windows platforms.  As of today, not sensible to use for official packages.  Possible that these issues will be fixed in time for PG17 but then we would be switching at the last minute.  Also need to check if all of the extensions work properly with meson build.  Maybe for v18 we switch early in the cycle for it.&lt;br /&gt;
&lt;br /&gt;
Berg - Tried meson but noticed that it doesn&#039;t support llvm which is a giant feature and stopped because of that.&lt;br /&gt;
&lt;br /&gt;
Alvaro - Need to make sure that once meson stuff is installed and you want to install an extension and is much harder to ensure that the extension can be built like pgxs, does it have support for meson and work?&lt;br /&gt;
&lt;br /&gt;
Peter E - Maybe switch early in v18 cycle and try to fix it up.&lt;br /&gt;
&lt;br /&gt;
Berg - As long as it is supposed to work then it&#039;s about fixing bugs.&lt;br /&gt;
&lt;br /&gt;
Peter E - Not worthwhile since llvm support just doesn&#039;t work at all right now.&lt;br /&gt;
&lt;br /&gt;
Alvaro - Can we insist on disallowing cross-compilation?&lt;br /&gt;
&lt;br /&gt;
Munro - Packagers mailing list is currently restricted but maybe we need one that isn&#039;t restricted for packaging discussions?&lt;br /&gt;
&lt;br /&gt;
Peter E - People can send to packagers ... and maybe CC other lists&lt;br /&gt;
&lt;br /&gt;
Magnus - Gets weird CC&#039;ing between lists that are private and not private&lt;br /&gt;
&lt;br /&gt;
Devrim - Not just about Berg and Devrim but there&#039;s lots of other packagers out there who are not just using the community packages.  More people need to be aware of this.  Experience so far is that not everyone is aware and we release and then other people come and ask Devrim about the new things in the spec file.  Don&#039;t expect me to follow everything though.&lt;br /&gt;
&lt;br /&gt;
Peter E - Existing packaging lists have very little traffic currently.  Packagers generally pull info from upstream through release notes and things, not the case that all of the hackers out there reach out to the packagers to tell them about new things.&lt;br /&gt;
&lt;br /&gt;
Devrim - If zlib is added as a specific library required then maybe the patch author should check out if the library is actually available on all of the different platforms or not.&lt;br /&gt;
&lt;br /&gt;
Berg - Maybe postgres can do better regarding having hackers communicating with our packagers.  Should packagers generally be expected to add new features?  Should some things not be enabled by default?  What about checksums?&lt;br /&gt;
&lt;br /&gt;
Peter E - Probably should just turn on all build-time options, but run-time options should be left as the PG defaults.&lt;br /&gt;
&lt;br /&gt;
Bruce - Release notes are written for a broad audience.  Not designed to show absolutely every build change or every config change.&lt;br /&gt;
&lt;br /&gt;
Munro - Perhaps there needs to be a new document.&lt;br /&gt;
&lt;br /&gt;
Bruce - Maybe.  Sometimes things are not added, because something that most users aren&#039;t going to see doesn&#039;t need to be included and we want to have the document be reasonable in terms of size.&lt;br /&gt;
&lt;br /&gt;
Peter E - We do have a section of incompatible changes, maybe we should have that be better organized.&lt;br /&gt;
&lt;br /&gt;
Bruce - Probably would be best as a separate document.&lt;br /&gt;
&lt;br /&gt;
Matthias - release notes for incompatible changes is much more user-focused.  Maybe put something like this at the end of the page.&lt;br /&gt;
&lt;br /&gt;
Bruce - How many people read the release notes?  Stephen - Lots.  Bruce - Only like dozens of people are needing this specific information while the release notes are for a much broader audience and so it would probably be better as a separate document.&lt;br /&gt;
&lt;br /&gt;
Jeff - Is the biggest issue the dependencies?&lt;br /&gt;
&lt;br /&gt;
Peter E - There are subsections not interesting to most people..  Bruce - Maybe we should remove those sections too then.&lt;br /&gt;
&lt;br /&gt;
Matthias - Minor release notes have things that are very detailed.&lt;br /&gt;
&lt;br /&gt;
Bruce - We include more detailed info because we don&#039;t expect them to re-test between minor versions, so we want to list things that people might run into when they do a minor release update.&lt;br /&gt;
&lt;br /&gt;
Matthias - Maybe we add a separate page for search-level compatibility issues, developer-level issues, extension authors.  Extensions being impacted by changes to internal structures.&lt;br /&gt;
&lt;br /&gt;
Peter E - Would never finish the release notes to include all those.&lt;br /&gt;
&lt;br /&gt;
Stephen - Extension authors should be following hackers or committers if they&#039;re using internal structures.&lt;br /&gt;
&lt;br /&gt;
Devrim - We build the beta packages and so it would be good to have the info about new switches that are added into configure before then.&lt;br /&gt;
&lt;br /&gt;
Magnus - Do we have a process for adding things to buildfarm animals in terms of switches?&lt;br /&gt;
&lt;br /&gt;
Matthias - Hackers who add the feature tend to add that option to their buildfarm animals.&lt;br /&gt;
&lt;br /&gt;
Munro - Or the hacker adding things has to reach out to buildfarm animal maintainers and keep on them to fix their animals and add support.&lt;br /&gt;
&lt;br /&gt;
Matthias - When is there going to be a good guideline on how to build extensions with meson?&lt;br /&gt;
&lt;br /&gt;
Peter E - In the fullness of time.&lt;br /&gt;
&lt;br /&gt;
Matthias - Have that for make but don&#039;t see that for meson.&lt;br /&gt;
&lt;br /&gt;
Peter E - No need to actually do that really.&lt;br /&gt;
&lt;br /&gt;
Berg - Quite a few extensions are pretty small and some are using cmake and larger extensions need more research anyway and many extensions are too small to really benefit from meson anyway.&lt;br /&gt;
&lt;br /&gt;
Peter E - What would be interesting would be to get these extensions working with meson to get Windows support for them as many could work on Windows but don&#039;t just because of the build issues that meson might fix.&lt;br /&gt;
&lt;br /&gt;
Magnus - Would be good to have something like pgxs that&#039;s built on meson but pgxs is pretty fundamentally built on make files.&lt;br /&gt;
&lt;br /&gt;
Matthias - Tried to get make files working on mac, then tried to use meson for an extension, didn&#039;t get it to work, copied one of the files from the PG project and was able to make it work but wasn&#039;t ideal.&lt;br /&gt;
&lt;br /&gt;
Magnus - Would be nice to have a tool to take pgxs makefile and convert it to meson if possible.  Simple makefiles it might be possible to do the conversion.  More complex makefiles need additional research.  Would be useful to have that tool though.&lt;br /&gt;
&lt;br /&gt;
=== Built-in collation provider for &amp;quot;C&amp;quot; and &amp;quot;C.UTF-8&amp;quot; ===&lt;br /&gt;
&lt;br /&gt;
Jeff - Talk about C.UTF-8 built-in collation provider.  If you take aside collation and consider just other unicode functions- initcap, regular expressions, other parts of the backend use ascii sometimes and use the database default collation provider and use those for various things, adjusting characters to try to treat international characters better.  All these other behaviors are still quite important and we are doing everything through libc or ICU and we can&#039;t document or test any of that in much the same way we do it for collations.  We have all these problems not just for collations but also for all these behaviors because of the collation providers.  This is difficult because you can&#039;t provide simple examples for functions.  The other behavior is pretty easy to build in though.  Collation carries a lot of other complications but these other unicode operations are generally just lookup tables with a few exceptions.  Unless you&#039;re trying to localize upper/lower functions, in general it&#039;s basically always the same.  There were very few cases where upper/lower did something different for every locale on a given system (eg: Turkish).  Essentially saying that we could probably build-in these basic/default unicode behavior in a maintainable way by basically importing these lookup tables.  We would also get a performance benefit by doing this.  All of this setting aside collation, which does carry a lot of other complexity, but we could at least solve these non-collation behavior issues ourselves and solve that problem.  We would still provide the ability to use libc or ICU for localized collation and other unicode behaviors but this would allow us to have our own built-in provider instead.  This would be a better version of what C.UTF-8 locale offers, essentially, as it would be built-in and we could document it and test it.  Have discussed it on the list and gotten some support for it from a useability standpoint and developer standpoint.  Have also had some concerns raised but think those have been mainly responded to.  Not a solution to the collation problem but instead all of the other issues around there.  For collation, this would essentially be the C collation.  For a database it&#039;s often difficult to chose a locale anyway.  Often isn&#039;t really possible to pick a single collation for a whole database anyway.&lt;br /&gt;
&lt;br /&gt;
Peter E - What is the difference between this and the C.UTF-8 locale?&lt;br /&gt;
&lt;br /&gt;
Jeff - The C.UTF-8 has changed the collation before, for one thing.&lt;br /&gt;
&lt;br /&gt;
Peter E - Example?&lt;br /&gt;
&lt;br /&gt;
Munro - Independent libraries may have created C.UTF-8 locales and some project (Debian?) created one first and then glibc added support for it later but it was a bit different and then Debian dropped their patches for it and that changed things.&lt;br /&gt;
&lt;br /&gt;
Peter E - More of a bootstrap problem?&lt;br /&gt;
&lt;br /&gt;
Munro - Yeah, may be able to just ignore that issue as just being a historical problem.&lt;br /&gt;
&lt;br /&gt;
Jeff - Anyone who is using C.UTF-8 today, this built-in provider would just be flat-out better always.  Wouldn&#039;t have the risk of such a historical thing happening, at least, and we would be matching the version of unicode that this locale uses with the version of unicode that PG uses for normalization.  Risk of these changes would be low.  As new versions of unicode come out, this would be updated.  This would allow us to avoid those changes happening at the OS level under us and instead we could document it as part of PG releases.  We could then also document these changes as part of PG documentation.  Unicode has quite strong guarantees around this behavior but won&#039;t say that it won&#039;t ever break especially around undefined unicode codepoints.&lt;br /&gt;
&lt;br /&gt;
Munro - Think it&#039;s a really cool idea but for another reason- kill Windows locale support.  It&#039;s completely unmaintained and it&#039;s unloved and would be great to just get rid of it and instead offer a built-in consistent option.  If you don&#039;t want that, then you should just use ICU.&lt;br /&gt;
&lt;br /&gt;
Jeff - Other aspects - this would also be available on all platforms, such as Mac which doesn&#039;t have C.UTF-8.  Available beyond just glibc users.  Collation is still an important topic and you would probably still want to use ICU for collation as it&#039;s just preferable for natural language and it&#039;s also a lot better than libc.  You could use COLLATE clauses to get that natural ordering that you want.  Another benefit to that is that applying the COLLATE clause to the query itself avoids issues with indexes.  The sort step would end up being the final thing.  Quite often that could end up being a better performing plan, even if using ICU which is faster than libc, but it&#039;s still going to be slower than using C locale and if that is what matters for a particular operation that could be much better performing.&lt;br /&gt;
&lt;br /&gt;
Peter E - Hard disagree on that, can see the technical appeal of adding it just to have it but not sure that anyone would really actually use it.  Expecting people to have to explicitly say COLLATE to get natural language sorting isn&#039;t going to go over well because we&#039;ve been trying to get to a point where they don&#039;t have to explicitly ask for it.&lt;br /&gt;
&lt;br /&gt;
Jeff - This is more for people who are using C.UTF-8 now really.  Not trying to say we&#039;re really changing any defaults at all.  For people who have a database default collation of C.UTF-8 today this would make more sense.&lt;br /&gt;
&lt;br /&gt;
Peter E - Who is actually using that?&lt;br /&gt;
&lt;br /&gt;
Jeff - Don&#039;t have specific numbers but think it&#039;s a pretty normal configuration as it performs better.&lt;br /&gt;
&lt;br /&gt;
Matthias - If I don&#039;t care about natural ordering but just care about seeing similar things together.&lt;br /&gt;
&lt;br /&gt;
Peter E - Maybe as a DBA but probably not the case as an application developer.&lt;br /&gt;
&lt;br /&gt;
Matthias - I don&#039;t really care about real collation in my apps generally.&lt;br /&gt;
&lt;br /&gt;
Berg - If you&#039;re running a server for the world then perhaps it&#039;s fine.&lt;br /&gt;
&lt;br /&gt;
Peter E - Maybe we do this for v1 but in v2 add in full support.&lt;br /&gt;
&lt;br /&gt;
Jeff - Don&#039;t want to rule out that possibility.  Reasonable thing to consider but the issue is then maintenance of it.  Would need enough people comfortable with that part of the code base to be able to maintain it.  The root collation - unicode has all sorts of defaults for everything and it calls them defaults and as an example: France region of the French language has the same collation as the English language of the English language in the US.  Not a linguist but the collation order is the same in both cases and is just the &#039;root&#039; collation.  Unicode has these defaults and they&#039;re meant as a guide but they&#039;re careful about calling things a default but they do have some kind of a default.  The root collation order would be a great natural language sort order to provide by default by the project, but ICU offers that.  libc does not offer that.  No way to get root collation order from libc.&lt;br /&gt;
&lt;br /&gt;
Peter E - No obvious way to ask for it but you could get it from libc by asking for like French.&lt;br /&gt;
&lt;br /&gt;
Munro - A good number of different things are just symlinks between each other.&lt;br /&gt;
&lt;br /&gt;
Jeff - Some people might just not include those locales.  If there was to be a &#039;default default&#039; then that might be a reasonable thing to have like ICU or we could consider what that would look like to build into PG overall.  Happy to contribute and work on that and think it would be useful to go down that road, but don&#039;t want to promise that.  Proposal for v17 is not that and don&#039;t want to promise that we would get there.&lt;br /&gt;
&lt;br /&gt;
Munro - The obvious alternative would be to just say use ICU more and perhaps make it the default too.  We could provide a different provider that uses ICU code for things but then we would be using ICU&#039;s version.&lt;br /&gt;
&lt;br /&gt;
Jeff - One big benefit would be putting the unicode versions in lock-step which we wouldn&#039;t be able to do if we&#039;re using external dependencies.  Big thing I like about this proposal is being able to document all of this, including things like being able to document how to do regexps with different locales.  The idea that this would be documentable is a huge benefit but we can&#039;t get that with any dependency.&lt;br /&gt;
&lt;br /&gt;
Munro - Sounds great when you talk about just basic C type but when we start talking about taking this further then maybe we should just buy into ICU more.&lt;br /&gt;
&lt;br /&gt;
Matthias - Recently ICU had a release where they changed but they didn&#039;t change the identifier.&lt;br /&gt;
&lt;br /&gt;
Joe - Every other database has the option to have a built-in collation and locale support.  PG is really the only one that doesn&#039;t.&lt;br /&gt;
&lt;br /&gt;
Munro - All those other ones suck though and they&#039;re poorly understood.&lt;br /&gt;
&lt;br /&gt;
Jeff - Concern raised about having a built-in root collation because that might blur the line between using ICU and using built-in provider.  Agree with that and after thinking about it we are not likely to want the tailoring and localization as ICU is going to be better at that and would want to push people towards ICU.  Trying to own all the issues with ICU seems like a lot of work.&lt;br /&gt;
&lt;br /&gt;
Berg - What you might do is have an internal techincal collation when the database does sorting on its own when it isn&#039;t asked for it (like for GROUP BY), maybe always use C locale for that?&lt;br /&gt;
&lt;br /&gt;
Matthias - Using the GROUP BY with an ORDER BY might be much slower then&lt;br /&gt;
&lt;br /&gt;
Stephen - But explicit idea is to only do this when not being asked for an ordering and no ORDER BY included.&lt;br /&gt;
&lt;br /&gt;
Jeff - Similar case for indexes, if it&#039;s only for internal usage and not for other cases, but there was concern about teaching the planner how to do this and choose the right option.  You&#039;d have to decorate paths with knowledge of where we can do this and where we can&#039;t do this and we would add complexity and possibly bugs into the planner around this.  This might be able to be overcome though and could provide some serious performance benefits.  Another way to think about this is that we do something similar for hashing operations- we only use the specific functions if the collation is non-deterministic but for deterministic collations we just use generic hashing.&lt;br /&gt;
&lt;br /&gt;
Matthias - Original proposal was to make primary key text indexes use this&lt;br /&gt;
&lt;br /&gt;
Jeff - Wasn&#039;t exactly part of the proposal but the thread took off a bit.  Without bringing up the thread specifically and such, there was a realization that we are accepting a lot of potential downsides with the risks associated with using a non-C collation for indexes and in other cases because when a collation changes then the index breaks.  Also imposing a performance cost associated with building the index and also the cost of the index becoming corrupted due to changes.  What I was trying to get across in the thread was to think about this cost/benefit question between these risks and costs which are imposed on all of these text indexes which may result in only very small benefits.&lt;br /&gt;
&lt;br /&gt;
Joe - ICU in some cases it&#039;s 10x faster than glibc and so there&#039;s also the issue that many many people are using glibc.&lt;br /&gt;
&lt;br /&gt;
Bruce - Yeah, you&#039;re bringing in the cost in terms of performance and the corruption risk for pretty limited benefit.&lt;br /&gt;
&lt;br /&gt;
Jeff - Mostly for primary keys it&#039;s just an equality lookup and so this ends up being very impactful.  There was a lot in the thread and we could also discuss later.&lt;br /&gt;
&lt;br /&gt;
Munro - Attempting to predict what the user is going to do with the data.  Maybe have a distinction between text and &#039;human text&#039; or such.&lt;br /&gt;
&lt;br /&gt;
Jeff - Not quite type or what the user is going to do with it..&lt;br /&gt;
&lt;br /&gt;
Munro - User could say &#039;collate C&#039;..&lt;br /&gt;
&lt;br /&gt;
Jeff - Then you have a lot of extra typing to say COLLATE C for a lot of keys and then FKs, etc.  All somewhat related at least.  Very messy problem.  ICU built by default in v16 which is a big step as libc is just really not good.  More ICU would be great.  One of the problems is that ICU doesn&#039;t support the C locale.  Today we can&#039;t do away with libc support because a lot of people use C.UTF-8.  With this proposal, people could use ICU or use the built-in provider and get rid of libc support.&lt;br /&gt;
&lt;br /&gt;
Vondra - One of the main problems that I had with the proposal is that it seemed like &amp;quot;if user does not specify locale, then if the user didn&#039;t specify the locale then we just change it to whatever is faster&amp;quot; which seems a bit strange.  Reasonable expectation of user is that the database is created with a specific locale, then everything will use that as the default.  A lot of users specify it at the database level and expect it to work using that locale for everything in that database.  Would be ok with changing the implementation detail as long as it keeps the same result.  Would be really surprising for users though would be changing to something faster but changes the ordering.&lt;br /&gt;
&lt;br /&gt;
Jeff - Database-level collation must be honored and so we would not be changing that.&lt;br /&gt;
&lt;br /&gt;
Vondra - What thought the problem was is that there was a misunderstanding around that.&lt;br /&gt;
&lt;br /&gt;
Jeff - Agreed that the discussion needs to be framed better to make it clear that this wasn&#039;t intended as impacting users in that way.&lt;br /&gt;
&lt;br /&gt;
Matthias - Regarding new built-in locale - not sure we should use the C or C.UTF-8 as the name.&lt;br /&gt;
&lt;br /&gt;
Peter E - Maybe use binary or something instead of C&lt;br /&gt;
&lt;br /&gt;
Matthias - It&#039;ll exist everywhere and naming it as C or C.UTF-8 is not very user friendly.&lt;br /&gt;
&lt;br /&gt;
Jeff - This capability isn&#039;t really accounted for in the SQL.  Would be interesting to think about another way to specify the behavior of upper/lower.  Could imagine one day maybe say just using the unicode data files and not have any dependency for upper/lower but also have support for things like the greek difference.  Regarding renaming, pretty much fine with whatever name we pick.  The SQL specifies only one example of the german capital S ... If we do choose names then we should try to leave room for possible variants.&lt;br /&gt;
&lt;br /&gt;
Peter E - I&#039;ve now signed up as a reviewer...&lt;br /&gt;
&lt;br /&gt;
=== CREATE SUBSCRIPTION ... SERVER ===&lt;br /&gt;
&lt;br /&gt;
Jeff - This is already being discussed on the list and it is changing a bit in direction thanks to that discussion.  No real dispute around this patch.  In the spirit of this meeting, decided to throw this topic out there in case someone wanted to discuss it.  Not very controversial.  Some of the original patch got some feedback about going in a bit of a different direction with only minor core changes and that&#039;s actually the direction that it&#039;s going in.&lt;br /&gt;
&lt;br /&gt;
Peter E - Proposed something similar before and therefore generally happy with it.&lt;br /&gt;
&lt;br /&gt;
=== The Path to un-reverting the MAINTAIN privilege ===&lt;br /&gt;
&lt;br /&gt;
=== Moving Forward with Pending Patches ===&lt;br /&gt;
&lt;br /&gt;
(Unknown: &amp;quot;I have encountered a situation where some of my patches have not been reviewed by others, preventing them from moving forward.  I believe this is a common challenge faced by other developers as well.  It would be great if we could engage in a discussion about this and potentially brainstorm ideas to improve it.&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Note from Daniel: &amp;quot;This was proposed by a hacker who was unable to attend&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
=== Recognizing New Contributors ===&lt;br /&gt;
&lt;br /&gt;
(Unknown: &amp;quot;Many active developers, including myself, desire to be listed as a Contributor, but just do not know how.  This lack of clarity can be confusing.  I&#039;m wondering if it&#039;s possible to have a discussion on how to effectively recognize and acknowledge new contributors.&amp;quot;). &lt;br /&gt;
&lt;br /&gt;
Note from Daniel: &amp;quot;This was proposed by that same person, and since he isn&#039;t able to attend I don&#039;t think it&#039;s fair to identify him (I did promise I&#039;d bring this up anonymously to put focus on the issue and not the person).  This is a person who I can vouch for being very active, prolific enough to show up on Roberts recent &amp;quot;Who contributed to..&amp;quot; blogpost.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Page Features / Reserve space on page ===&lt;br /&gt;
&lt;br /&gt;
=== TDE / IVs / More ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== v17 Patch Triage ===&lt;br /&gt;
&lt;br /&gt;
=== Any other business &amp;amp; close ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Developer Meeting]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=FOSDEM/PGDay_2024_Developer_Meeting&amp;diff=38611</id>
		<title>FOSDEM/PGDay 2024 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=FOSDEM/PGDay_2024_Developer_Meeting&amp;diff=38611"/>
		<updated>2024-01-31T21:56:40Z</updated>

		<summary type="html">&lt;p&gt;Dpage: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== FOSDEM 2024 Developer Meeting schedule by Time and Room ==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Studio 4&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:lightgray;&amp;quot;&lt;br /&gt;
|Thur 9:00-9:10&lt;br /&gt;
|Welcome and Introductions&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 9:10-9:30&lt;br /&gt;
|What&#039;s new in SQL:2023 (Vik)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 9:30-10:00&lt;br /&gt;
|Binary format output per session (Dave C)&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:lightgray;&amp;quot;&lt;br /&gt;
|Thur 10:00&lt;br /&gt;
|Coffee&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 10:30-11:00&lt;br /&gt;
|Meson and packaging (Devrim)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 11:00-11:30&lt;br /&gt;
|Built-in collation provider for &amp;quot;C&amp;quot; and &amp;quot;C.UTF-8&amp;quot; (Jeff)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 11:30-12:00&lt;br /&gt;
|CREATE SUBSCRIPTION ... SERVER (Jeff)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 12:00-12:30&lt;br /&gt;
|The Path to un-reverting the MAINTAIN privilege (Nathan)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:lightgray;&amp;quot;&lt;br /&gt;
|Thur 12:30-13:00&lt;br /&gt;
|Lunch&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 13:00-13:30&lt;br /&gt;
|Moving Forward with Pending Patches (Unknown: &amp;quot;I have encountered a situation where some of my patches have not been reviewed by others, preventing them from moving forward.  I believe this is a common challenge faced by other developers as well.  It would be great if we could engage in a discussion about this and potentially brainstorm ideas to improve it.&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Note from Daniel: &amp;quot;This was proposed by a hacker who was unable to attend&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 13:30-14:00&lt;br /&gt;
|Recognizing New Contributors (Unknown: &amp;quot;Many active developers, including myself, desire to be listed as a Contributor, but just do not know how.  This lack of clarity can be confusing.  I&#039;m wondering if it&#039;s possible to have a discussion on how to effectively recognize and acknowledge new contributors.&amp;quot;). &lt;br /&gt;
&lt;br /&gt;
Note from Daniel: &amp;quot;This was proposed by that same person, and since he isn&#039;t able to attend I don&#039;t think it&#039;s fair to identify him (I did promise I&#039;d bring this up anonymously to put focus on the issue and not the person).  This is a person who I can vouch for being very active, prolific enough to show up on Roberts recent &amp;quot;Who contributed to..&amp;quot; blogpost.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:lightgray;&amp;quot;&lt;br /&gt;
|Thur 14:00&lt;br /&gt;
|Coffee&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:white;&amp;quot;&lt;br /&gt;
|Thur 14:00-14:30&lt;br /&gt;
|Page Features / Reserve space on page&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:white;&amp;quot;&lt;br /&gt;
|Thur 14:30-15:00&lt;br /&gt;
|TDE / IVs / More&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:white;&amp;quot;&lt;br /&gt;
|Thur 15:00-16:45&lt;br /&gt;
|v17 Patch Triage&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:white;&amp;quot;&lt;br /&gt;
|Thur 16:45-17:00&lt;br /&gt;
|Any other business &amp;amp; close.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Suggested topics ==&lt;br /&gt;
&lt;br /&gt;
* Patch Triage&lt;br /&gt;
* Moving Forward with Pending Patches&lt;br /&gt;
* Recognizing New Contributors&lt;br /&gt;
* What&#039;s new in SQL:2023&lt;br /&gt;
* Binary format output per session&lt;br /&gt;
* Meson and packaging&lt;br /&gt;
* Developer Meeting during PGConf Europe&lt;br /&gt;
* Page Features / Reserve space on page&lt;br /&gt;
* TDE&lt;br /&gt;
&lt;br /&gt;
== Notes/Minutes ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== v17 Patch Triage ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Developer Meeting]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=FOSDEM/PGDay_2024_Developer_Meeting&amp;diff=38608</id>
		<title>FOSDEM/PGDay 2024 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=FOSDEM/PGDay_2024_Developer_Meeting&amp;diff=38608"/>
		<updated>2024-01-31T10:04:57Z</updated>

		<summary type="html">&lt;p&gt;Dpage: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== FOSDEM 2024 Developer Meeting schedule by Time and Room ==&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Madrid&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:lightgray;&amp;quot;&lt;br /&gt;
|Thur 8:30-9:30&lt;br /&gt;
|Welcome and Introductions&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 9:00-9:30&lt;br /&gt;
|What&#039;s new in SQL:2023 (Vik)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 9:30-10:00&lt;br /&gt;
|Binary format output per session (Dave C)&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:lightgray;&amp;quot;&lt;br /&gt;
|Thur 10:00&lt;br /&gt;
|Coffee&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 10:30-11:00&lt;br /&gt;
|Meson and packaging (Devrim)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 11:00-11:30&lt;br /&gt;
|Built-in collation provider for &amp;quot;C&amp;quot; and &amp;quot;C.UTF-8&amp;quot; (Jeff)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 11:30-12:00&lt;br /&gt;
|CREATE SUBSCRIPTION ... SERVER (Jeff)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 12:00-12:30&lt;br /&gt;
|The Path to un-reverting the MAINTAIN privilege (Nathan)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:lightgray;&amp;quot;&lt;br /&gt;
|Thur 12:30-13:00&lt;br /&gt;
|Lunch&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 13:00-13:30&lt;br /&gt;
|Moving Forward with Pending Patches (Unknown: &amp;quot;I have encountered a situation where some of my patches have not been reviewed by others, preventing them from moving forward.  I believe this is a common challenge faced by other developers as well.  It would be great if we could engage in a discussion about this and potentially brainstorm ideas to improve it.&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
Note from Daniel: &amp;quot;This was proposed by a hacker who was unable to attend&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|Thur 13:30-14:00&lt;br /&gt;
|Recognizing New Contributors (Unknown: &amp;quot;Many active developers, including myself, desire to be listed as a Contributor, but just do not know how.  This lack of clarity can be confusing.  I&#039;m wondering if it&#039;s possible to have a discussion on how to effectively recognize and acknowledge new contributors.&amp;quot;). &lt;br /&gt;
&lt;br /&gt;
Note from Daniel: &amp;quot;This was proposed by that same person, and since he isn&#039;t able to attend I don&#039;t think it&#039;s fair to identify him (I did promise I&#039;d bring this up anonymously to put focus on the issue and not the person).  This is a person who I can vouch for being very active, prolific enough to show up on Roberts recent &amp;quot;Who contributed to..&amp;quot; blogpost.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:lightgray;&amp;quot;&lt;br /&gt;
|Thur 14:00&lt;br /&gt;
|Coffee&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:white;&amp;quot;&lt;br /&gt;
|Thur 14:00-16:45&lt;br /&gt;
|v17 Patch Triage&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;background-color:white;&amp;quot;&lt;br /&gt;
|Thur 16:45-17:00&lt;br /&gt;
|Any other business &amp;amp; close.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Suggested topics ==&lt;br /&gt;
&lt;br /&gt;
* Patch Triage&lt;br /&gt;
* Moving Forward with Pending Patches&lt;br /&gt;
* Recognizing New Contributors&lt;br /&gt;
* What&#039;s new in SQL:2023&lt;br /&gt;
* Binary format output per session&lt;br /&gt;
* Meson and packaging&lt;br /&gt;
* Developer Meeting during PGConf Europe&lt;br /&gt;
* Page Features / Reserve space on page&lt;br /&gt;
* TDE&lt;br /&gt;
&lt;br /&gt;
== Notes/Minutes ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== v17 Patch Triage ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Developer Meeting]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PgCon_2023_Developer_Meeting&amp;diff=37935</id>
		<title>PgCon 2023 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PgCon_2023_Developer_Meeting&amp;diff=37935"/>
		<updated>2023-06-02T16:42:07Z</updated>

		<summary type="html">&lt;p&gt;Dpage: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A meeting of the interested PostgreSQL developers is being planned for Tuesday 30 May, 2023 at the University of Ottawa, prior to pgCon 2023. In order to keep the numbers manageable, this meeting is by &#039;&#039;&#039;invitation only&#039;&#039;&#039;.&lt;br /&gt;
Any questions regarding the invitations to this event should be directed to the team of individuals tasked with coming up with the list of people to invite:&lt;br /&gt;
&lt;br /&gt;
* Andres Freund&lt;br /&gt;
* Stephen Frost&lt;br /&gt;
* Dave Page&lt;br /&gt;
&lt;br /&gt;
An Unconference will be held on Friday for in-depth discussion of technical topics.&lt;br /&gt;
&lt;br /&gt;
This is a PostgreSQL Community event.&lt;br /&gt;
&lt;br /&gt;
== Meeting Goals ==&lt;br /&gt;
&lt;br /&gt;
* Define the schedule for the upcoming releases&lt;br /&gt;
* Address any proposed timing, policy, or procedure issues&lt;br /&gt;
* Receive updates from project sub-teams on their activities and discuss any resulting issues or concerns.&lt;br /&gt;
* Address any proposed [http://en.wikipedia.org/wiki/Wicked_problem Wicked problems]&lt;br /&gt;
&lt;br /&gt;
== Time &amp;amp; Location ==&lt;br /&gt;
&lt;br /&gt;
The meeting will (probably) be:&lt;br /&gt;
&lt;br /&gt;
* 9:00AM to 12PM&lt;br /&gt;
* DMS 3105 - Desmarais Hall, 55 Laurier Avenue East&lt;br /&gt;
* University of Ottawa.&lt;br /&gt;
&lt;br /&gt;
Lunch will be served during the meeting.&lt;br /&gt;
&lt;br /&gt;
== COVID-19 ==&lt;br /&gt;
&lt;br /&gt;
The University of Ottawa&#039;s COVID-19 guidance can be found at https://www.uottawa.ca/en/covid-19. Wearing of masks at the Developer Meeting will be optional, however we do ask that people do not attend if they have COVID symptoms or have tested positive.&lt;br /&gt;
&lt;br /&gt;
== RSVPs ==&lt;br /&gt;
&lt;br /&gt;
The following people have RSVPed to the meeting (in alphabetical order, by surname). Note that we can accommodate a &#039;&#039;&#039;maximum of 30&#039;&#039;&#039;!&lt;br /&gt;
&lt;br /&gt;
# Nathan Bossart&lt;br /&gt;
# Joe Conway&lt;br /&gt;
# Jeff Davis&lt;br /&gt;
# Mark Dilger&lt;br /&gt;
# Peter Eisentraut&lt;br /&gt;
# Andres Freund&lt;br /&gt;
# Stephen Frost&lt;br /&gt;
# Etsuro Fujita&lt;br /&gt;
# Peter Geoghegan&lt;br /&gt;
# Magnus Hagander&lt;br /&gt;
# Amit Kapila&lt;br /&gt;
# Jonathan Katz&lt;br /&gt;
# Alexander Kukushkin&lt;br /&gt;
# Tom Lane&lt;br /&gt;
# Heikki Linnakangas&lt;br /&gt;
# Noah Misch&lt;br /&gt;
# Thomas Munro&lt;br /&gt;
# Dave Page&lt;br /&gt;
# Michael Paquier&lt;br /&gt;
# Melanie Plageman&lt;br /&gt;
# Masahiko Sawada&lt;br /&gt;
# Peter Smith&lt;br /&gt;
# Tomas Vondra&lt;br /&gt;
&lt;br /&gt;
The following people will not be in Ottawa, and do not plan to attend:&lt;br /&gt;
&lt;br /&gt;
# Masao Fujii&lt;br /&gt;
# Daniel Gustafsson&lt;br /&gt;
# Álvaro Herrera&lt;br /&gt;
# Tatsuo Ishii&lt;br /&gt;
# Alexander Korotkov&lt;br /&gt;
# Amit Langote&lt;br /&gt;
# Dean Rasheed&lt;br /&gt;
# David Rowley&lt;br /&gt;
&lt;br /&gt;
== Photos ==&lt;br /&gt;
&lt;br /&gt;
[[File:Pgcon-dev-meeting-2023-1.png]]&lt;br /&gt;
[[File:Pgcon-dev-meeting-2023-2.png]]&lt;br /&gt;
&lt;br /&gt;
Please contact Dave Page if you&#039;d like copies of the full resolution originals.&lt;br /&gt;
&lt;br /&gt;
== Agenda Items ==&lt;br /&gt;
&#039;&#039;Please add suggestions for agenda items here. (with your name)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* 16.0 release and commitfest schedule (Dave)&lt;br /&gt;
* Renaming &amp;quot;master&amp;quot; branch to &amp;quot;main&amp;quot;? (Michael)&lt;br /&gt;
* A brief PG15 RMT postmortem and what can we improve? (Jonathan)&lt;br /&gt;
* What are the big challenges for our users? What are the big challenges for us to solve? (Jonathan)&lt;br /&gt;
* Cloud operators have data of value to this community, e.g. frequency of errors that should never happen.  What sort of data sharing regime might provide a good balance between value to the community and comfort for cloud operators? (Noah)&lt;br /&gt;
* High level thoughts and feedback on moving toward ICU as the preferred collation provider (Jeff)&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Item&lt;br /&gt;
!Presenter&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|09:00 - 09:10&lt;br /&gt;
|Welcome and introductions&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:10 - 09:20&lt;br /&gt;
|Release and commitfest schedules&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:20 - 09:35&lt;br /&gt;
|Renaming &amp;quot;master&amp;quot; branch to &amp;quot;main&amp;quot;&lt;br /&gt;
|Michael Paquier&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:35 - 10:00&lt;br /&gt;
|A brief PG15 RMT postmortem and what can we improve?&lt;br /&gt;
|Jonathan Katz&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|10:00 - 10:30&lt;br /&gt;
|What are the big challenges for our users? What are the big challenges for us to solve?&lt;br /&gt;
|Jonathan Katz&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|10:30 - 11:00&lt;br /&gt;
|Coffee break&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:00 - 11:20&lt;br /&gt;
|High level thoughts and feedback on moving toward ICU as the preferred collation provider [[StateOfICU]]&lt;br /&gt;
|Jeff Davis&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:20 - 11:50&lt;br /&gt;
|Cloud operators have data of value to this community, e.g. frequency of errors that should never happen.  What sort of data sharing regime might provide a good balance between value to the community and comfort for cloud operators? &lt;br /&gt;
|Noah Misch&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:50 - 12:00&lt;br /&gt;
|Any other business&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|12:00&lt;br /&gt;
|Lunch&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: This timetable is a rough guide only. Items will start as soon as the previous discussion is complete (breaks will not move materially however). Any remaining time before lunch may be used for Commitfest item triage or other activities.&lt;br /&gt;
&lt;br /&gt;
== Minutes ==&lt;br /&gt;
Stephen Frost recording&lt;br /&gt;
&lt;br /&gt;
=== Welcome and Introductions ===&lt;br /&gt;
Dave Page - General opening&lt;br /&gt;
Introductions&lt;br /&gt;
&lt;br /&gt;
=== Release and commitfest schedules ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Dave P - Any proposed dates?&lt;br /&gt;
Katz- We proposed a specific feature freeze date and no one objected&lt;br /&gt;
Dave P - April 8?&lt;br /&gt;
Katz- Yes&lt;br /&gt;
Peter E- Can always change it next year if needed anyway&lt;br /&gt;
Katz- Any objections?&lt;br /&gt;
Tom- Official rather than unofficial end?&lt;br /&gt;
Katz- Do we want to change anything?&lt;br /&gt;
Peter G- Anything wonky could be addressed, seems to be pretty well worked out&lt;br /&gt;
Katz- Can we try to shift more work to earlier?  Time and human nature shows that we end up with things at the end but getting things in earlier&lt;br /&gt;
Andres- better this year than last year, at least.  Not sure if there&#039;s specific reasons but generally better.&lt;br /&gt;
Munro- Do you mean buildfarm breakage?&lt;br /&gt;
Andres- Buildfarm breakage but also people testing&lt;br /&gt;
Noah- Reduce log jam by reducing uncertainty about when it ends, maybe other approaches are there too&lt;br /&gt;
Katz- Having CI helps because it provides feedback more quickly&lt;br /&gt;
Dave P- Haven&#039;t come up with schedule for next cycle yet&lt;br /&gt;
Katz- Usual late q3/q4?, everyone is planning around that&lt;br /&gt;
Dave P- Pick a date?&lt;br /&gt;
Katz- Typically target one of the last two weeks in September&lt;br /&gt;
Peter E- Usually end up in October but would like it to be earlier&lt;br /&gt;
Noah- Which betas when to get there?&lt;br /&gt;
Peter E- We don&#039;t usually plan these really and haven&#039;t ever really set up a date&lt;br /&gt;
Joe- Seems like doing the same as we&#039;ve done in the past, right?&lt;br /&gt;
Dave P- Topic is are we going to change what we&#039;ve done?&lt;br /&gt;
Joe- July first CF for 17?&lt;br /&gt;
Andres- Impression was that lots of review was happening but was a different set of people vs. people working on July CF&lt;br /&gt;
Joe- When is RC?&lt;br /&gt;
Katz- Generally September&lt;br /&gt;
Tom- Don&#039;t have good sense of how much beta testing is happening&lt;br /&gt;
Katz- We are still seeing bugs after the beta, which is normal, it&#039;s software and that happens, but more we get people to beta test the more we&#039;ll get figured out&lt;br /&gt;
Dave P- That&#039;s a discussion we&#039;ve had for every meeting, used to do a lot more alpha and beta but didn&#039;t seem to get people to actually test&lt;br /&gt;
Katz- Uses say they are happy to help with testing but then they don&#039;t&lt;br /&gt;
Peter G- Impression is that it&#039;s hardly the case that users test&lt;br /&gt;
Dave P- Agreed, people don&#039;t tend to test&lt;br /&gt;
Peter E- People expecting docker images and such but without that it ends up not happens&lt;br /&gt;
Alex- Very inconvenient for some people to test&lt;br /&gt;
Mark- EDB testing happens starting with betas because their product depends on it, but if they don&#039;t catch things then they release and having it go longer doesn&#039;t add anything really&lt;br /&gt;
Peter E- There are others who do that, like PostGIS, where they don&#039;t do user testing but they test that their extensions work&lt;br /&gt;
Dave P- pgAdmin doesn&#039;t test very early on&lt;br /&gt;
Katz- Extensions do get tested early on though&lt;br /&gt;
Andres- PostGIS actually keeps up pretty tightly&lt;br /&gt;
Peter E- Other extensions don&#039;t really keep up with that&lt;br /&gt;
Dave P- PostGIS watches for API breakage and such&lt;br /&gt;
Andres- Yes, in their best interest to keep up&lt;br /&gt;
Noah- What about pginfra?&lt;br /&gt;
Magnus- Most of our pginfra is relitively small and simple&lt;br /&gt;
Peter G- How would we know if more beta testing was happening?&lt;br /&gt;
Tom- We&#039;d have more bug reports&lt;br /&gt;
Joe- Seems like we just need to set the dates out and then we change the plan if needed to, but with dates we actually have deadlines&lt;br /&gt;
Dave P- Good point, users can then plan around that&lt;br /&gt;
Katz- Typically the betas are around the same time each year, beta2 is around when we branch, beta3 is around August, then RC in September&lt;br /&gt;
Tom- Did we do a beta right before branch?&lt;br /&gt;
Katz- Usually, right in last week of June&lt;br /&gt;
Peter E- Depends on open issues but once those are resolved we can release, looking at it now, 6 items, 2 are basically the same, could be done quick, last year had a super long list that took a lot longer to get there.&lt;br /&gt;
Stephen- If we have a deadline then people can work towards it&lt;br /&gt;
Peter E- Have a deadline or your feature gets reverted&lt;br /&gt;
Heikki- Lets write down these deadlines so that people can work towards them&lt;br /&gt;
Katz- Gives predictability to users so they can plan around it.  How many people really go to .0?  Suprisingly a lot of people do&lt;br /&gt;
Joe- .0 is where the real testing starts.. lets just admit that and push to get that out&lt;br /&gt;
Andres- Folks will just move to .1...&lt;br /&gt;
Katz- There wasn&#039;t a lot of time between .0 and .1 and when there aren&#039;t a lot of bugs fixed between them then people feel comfortable&lt;br /&gt;
Stephen- Should be close to the next quarterly release&lt;br /&gt;
Katz- Think we agree, don&#039;t want too far before quarterly and don&#039;t want right after&lt;br /&gt;
Dave P- September 14 is a Thursday, seems like a good date?&lt;br /&gt;
Peter G- That seems fine&lt;br /&gt;
Andres- Is there a chance we&#039;d want to reduce the window between stamping and release, particularly when there are security issues?  Seems to be long to have 4 days between those and packaging is faster.&lt;br /&gt;
Tom- EDB didn&#039;t want to short it&lt;br /&gt;
Dave P- Isn&#039;t packaging, it&#039;s more about QA and checking to make sure everything is ok and to have time to address them&lt;br /&gt;
Peter G- Could adjust if needed&lt;br /&gt;
Dave P- People know the schedule and have confidence that they can do things in time to test, et al&lt;br /&gt;
Joe- Seems we could easily move it to Wednesday for the actual release process&lt;br /&gt;
Andres- Do we actually have cases where things break between stamping and release?&lt;br /&gt;
Dave P- Isn&#039;t always an issue with our stuff, sometimes it is with other things and with packaging&lt;br /&gt;
Magnus- Those could be tested previously rather than after stamping&lt;br /&gt;
Dave P- Could possibly do earlier but other libraries have new releases and such&lt;br /&gt;
Magnus- RPMs and Debian systems get built but RPMs aren&#039;t really tested, but the Debian snapshots are actually tested&lt;br /&gt;
Peter E- Can&#039;t start building the actual release packages until the actual release tarballs are published, need a bit of time in case things happen.  Maybe could squeeze from Monday to Wednesday.&lt;br /&gt;
Dave P- Wouldn&#039;t want to squeeze any more than Monday to Wednesday&lt;br /&gt;
Heikki- If there is a hiccup with Debian or such then that is independent really&lt;br /&gt;
Dave P- We release through our own servers and such really&lt;br /&gt;
Peter E- We could go out and ask people about this and find out&lt;br /&gt;
Noah- If we declare it earlier that it&#039;ll be a shorter release then people can make it work&lt;br /&gt;
Joe- Folks don&#039;t really want to deploy things on a Friday, so it&#039;s better to bring it in earlier&lt;br /&gt;
Michael P- Timezones should be considered too and Thursday in US is actually Friday on the other side of the world and people don&#039;t want to deploy on Fridays&lt;br /&gt;
Dave P- Same for packagers really as many of them are in India&lt;br /&gt;
Mark- Are people waiting until the last minute?&lt;br /&gt;
Dave P- We don&#039;t really do snapshot builds because we depend on the tarballs&lt;br /&gt;
Mark- If someone committed something 2 months before that breaks a build, you won&#039;t know?&lt;br /&gt;
Dave P- We should know that but there&#039;s other libraries and things that are involved in the build which get updated as part of the installer and might break things and those aren&#039;t checked as often.&lt;br /&gt;
Noah- Think of packaging as pipeline that&#039;s constantly getting built to test and make sure that things work&lt;br /&gt;
Dave P- Requires people to spend time testing that things actually worked and having an automated system is an awful lot of work, particularly of GUI applications that have to work but are hard to test&lt;br /&gt;
Heikki- Seems like consensus is Wednesday?&lt;br /&gt;
Tom- We should ask the packagers list really as they are very involved&lt;br /&gt;
Heikki- Yes, we should propose it to them and see what feedback we get.&lt;br /&gt;
Dave P- Want to be careful with packages, we don&#039;t want to get into a position of forcing other folks to work 12-14 hour day because many people have this as a job and such.&lt;br /&gt;
Noah- We should ask packagers what the impact ist.&lt;br /&gt;
Katz- Need to give ample time to even consider this, should we test with beta releases?&lt;br /&gt;
Peter E- Not a good test point because it doesn&#039;t require as much&lt;br /&gt;
Dave P- Beta is also only one version vs. the regular releases&lt;br /&gt;
Andres- Isn&#039;t the same pressure for the beta releases really either, no push on that&lt;br /&gt;
Katz- Seems like we could just propose it for the next regular set of releases&lt;br /&gt;
Dave P- We&#039;ve blown our time and seems like we should move on&lt;br /&gt;
Katz- Propose to packagers for November release to release on Wednesday instead&lt;br /&gt;
Dave P- Sept 14 target for release?&lt;br /&gt;
Katz- For v17 Sept 19, 2024&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
==== Action items ====&lt;br /&gt;
*Propose to packagers moving to Wednesday for November release&lt;br /&gt;
*Propose to RMT September 14 2023 for v16 release&lt;br /&gt;
*Propose to have September 19 2024 for v17 release&lt;br /&gt;
&lt;br /&gt;
=== Renaming &amp;quot;master&amp;quot; branch to &amp;quot;main&amp;quot; ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Michael- This was proposed back in 2020 and was done by github.  Git has changed itself to have an init default branch, also released in 2020.  You can also set up a default branch.  Andres committed a lot of changes to move to primary and to not use master/slave.  How do people feel about the change of branch name?&lt;br /&gt;
Peter E- I have a master&#039;s degree from university, what to do with that?  Not sure that the term is really that objectionable&lt;br /&gt;
Dave P- Have similar issue in pgAdmin with the &amp;quot;master&amp;quot; password, named for key that is used to unlock with other keys.  Decided to leave as-is since there really wasn&#039;t another name.&lt;br /&gt;
Peter E- That&#039;s also the general term usage in cryptography.&lt;br /&gt;
Dave P- Wouldn&#039;t object to the change but not really excited about it.&lt;br /&gt;
Heikki- Don&#039;t need to decide if it&#039;s a bad word or not but git and github have changed and should we maybe consider the change for that reason?&lt;br /&gt;
Peter E- Git hasn&#039;t really changed it though&lt;br /&gt;
Michael- Right, really only github has changed it&lt;br /&gt;
Peter E- git from commandline vs. from github&lt;br /&gt;
Peter G- Depends on the packaging maybe?&lt;br /&gt;
Michael- Git config setting that can be changed&lt;br /&gt;
Peter E- When this came up before, consensus was that we would consider changing when Git changes, but Git hasn&#039;t changed yet, so&lt;br /&gt;
Noah- Think we said we would change when Git changes and Git has not changed yet.&lt;br /&gt;
Peter E- One point was that if we don&#039;t change it then we&#039;ll have the same discussion every year and maybe we should change it just due to that.  There&#039;s a bunch of extensions and tooling and such and this would create a lot of work for folks.&lt;br /&gt;
Heikki- Doing a new git repo defaults to main on my laptop but that&#039;s because of configuration, but if you don&#039;t have that configuration set then you get a hint that if you don&#039;t have the value set that the default may change in the future.&lt;br /&gt;
Dave P- What downside?&lt;br /&gt;
Mark- No idea how many bugs will come out because of this with pipelines and such&lt;br /&gt;
Andres- Is there a way to make it just work for users who have existing checked out repos using git sym refs or such?&lt;br /&gt;
Peter E- People are expecting main to be there these days rather than master and we don&#039;t necessarily have to go purge everything of the specific term&lt;br /&gt;
Noah- Key is to not surprise people too mucn, we don&#039;t want to be the last people to have that term&lt;br /&gt;
Peter E- But then what about everything else like pgpool&lt;br /&gt;
Noah- Feel that &#039;master&#039; is less surprising than &#039;main&#039; today but that&#039;s probably going to change moving forward.&lt;br /&gt;
Heikki- Some extensions have already changed like pgrouting&lt;br /&gt;
Tom- Maybe wait for git or Linux to change&lt;br /&gt;
Mark- Poll the room, does anyone feel strongly one way or the other&lt;br /&gt;
Tom- Kinda feel like its not worth the effort currently&lt;br /&gt;
Michael- Not feeling like there is an urge to change given that git hasn&#039;t changed.&lt;br /&gt;
Dave P- No one really strongly against it either&lt;br /&gt;
Michael- Did it myself locally and was not hard to change.  Also fine to just not do anything right now.&lt;br /&gt;
Katz- Same conclusion as last time- wait for upstream or Linux to change.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
=== A brief PG15 RMT postmortem and what can we improve? ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Katz- Postmortem from RMT from last year.  Unique things in v15 release which is useful to call out.  RMT is Release Management Team.  Prior to RMT we had releases drag on.  Idea was to have a team who is able to push towards a release and make sure the system is stable and address open items.  Two goals- release on time, and have as stable a release as possible.  Some releases have been pushed into October but generally its been good and releases have been pretty stable but sometimes there are bugs that weren&#039;t caught until later minor releases.  In general things have been good and stable but there&#039;s always opportunity to improve.  SQL/JSON is an interesting case which was reverted late and it was a highlight feature.  v15 ended up being a bit sparse in terms of major features.  v16 has lots of awesome stuff on the other hand.  SQL/JSON things which were challenging- highly anticipated feature even though its a lot of syntactic sugar, but other databases have sql/json and people want to move to PG.  What made it challenging from an RMT perspective but it wasn&#039;t ready and people were still working on it but ultimately we had to revert it.  Hard to tell someone to revert it but that&#039;s part of the job and it is what it is.  With sql/json what the RMT was trying to do was see if we could get it in.  Want feedback though, we still had a pretty stable release and we got the release on time more-or-less.  Personally, I allowed going past deadlines which were set and that was a mistake because it ended up getting reverted late.  Currently v15 seems to be pretty stable while there were some bugs.  Are there things from that release and that effort that the RMT could benefit from hearing?&lt;br /&gt;
Peter G- Think the RMT process has been effective and successful.  All things considered the RMT does a good job.  You mentioned the obvious big one for v15 but that was a pretty specific case.&lt;br /&gt;
Andres- Wasn&#039;t that narrow but need to make sure the RMT isn&#039;t looking at things from a marketing perspective.  Thinking about hey this is one of the major features.&lt;br /&gt;
Peter G- How much time did the RMT give for that feature?&lt;br /&gt;
Andres- Months, like 3 months, was a lot of time, really dragged on.  Was also emotionally draining for people.&lt;br /&gt;
Melanie- Is it intentional that what the RMT does is opaque?&lt;br /&gt;
Peter G- Sort of.&lt;br /&gt;
Peter E- Isn&#039;t really intentional to have it that way.&lt;br /&gt;
Peter G- Think it was Noah that came up with the idea but was a good idea and is better to have a team who is informing someone that something has to be reverted rather than individuals going back and forth about it.&lt;br /&gt;
Andres- Doesn&#039;t mean we can&#039;t document the process and the review.&lt;br /&gt;
Peter G- There is a wiki page&lt;br /&gt;
Andres- But how would you know to look for a RMT wiki page as a new contributor?&lt;br /&gt;
Heikki- New contributors don&#039;t really need to worry about the RMT as it is more for committers to deal with typically.&lt;br /&gt;
Melanie- Are all RMT communications open? Are there online meeting notes and such?&lt;br /&gt;
Peter G- No&lt;br /&gt;
Katz- RMT meetings we do try to document what we talk about and there&#039;s a google doc and things on hackers are public but notes are private but not typically anything earth shattering in those meeting notes.&lt;br /&gt;
Peter G- Was on team but if there are off-the-record comments then those would be off-the-record either way and don&#039;t want people to take things personally.&lt;br /&gt;
Melanie- Is there a list and a date for when things need to get reverted&lt;br /&gt;
Peter G- The thing that is the real no-no is when someone isn&#039;t very communicative, but as long as there is an active discussion and an ongoing effort then things don&#039;t need to really have hard deadlines.&lt;br /&gt;
Noah- First year or two, a couple of emails were sent to hackers to explain how the RMT works, could do that annually.&lt;br /&gt;
Peter G- There is a email that was sent that sets up the RMT&lt;br /&gt;
Noah- Model should follow what the supreme courts should be like and that they can have some private notes if they need to&lt;br /&gt;
Mark- Is there an active issue?  Is there hostility to RMT?  If feature isn&#039;t ready that isn&#039;t really the RMT&#039;s fault.&lt;br /&gt;
Andres- Would have been good to have been faster when it came to reverting what wasn&#039;t ready for v15.  Dragging on wasn&#039;t good.&lt;br /&gt;
Peter E- There wasn&#039;t urgency maybe because it seemed like it could be reverted at any time.&lt;br /&gt;
Peter G- There were some tendrils where it reached out to that wouldn&#039;t have been good to keep, would have been good to pull it out sooner.&lt;br /&gt;
Katz- Sometimes its important to just jump on a call and discuss it.&lt;br /&gt;
Peter G- Point is, can you really expect to do it differently next time?  Not sure that there is really a lesson.  Maybe be more aggressive next time?&lt;br /&gt;
Andres- Maybe lesson is to not allow the marketability of the feature to drive us to keep it longer than we should have.&lt;br /&gt;
Katz- We don&#039;t want to risk our reputation for reliability&lt;br /&gt;
Peter G- Objection is that it took a long time but ultimately it was reverted and that was the right decision and it was reached in time.&lt;br /&gt;
Katz- One of my take-aways, maybe we should be targeting like beta2 to say if it&#039;s not ready by then, then it needs to go, so that everyone can kind of move on and can focus on stabilizing the release.&lt;br /&gt;
Noah- More time you give people the more time people will take.  Point is that things need to keep moving and there needs to be regular progress and if there&#039;s not then there has to be a really good reason.  You also brought up if the RMT should do more testing?&lt;br /&gt;
Katz- The goal is to make sure the release needs to be reliable but it should be a project goal to have it be reliable.&lt;br /&gt;
Noah- Right, would be too much for the RMT to take on.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
==== Action items ====&lt;br /&gt;
*DO BETTER!&lt;br /&gt;
*When in doubt, use beta2 as the deadline.&lt;br /&gt;
&lt;br /&gt;
=== What are the big challenges for our users? What are the big challenges for us to solve? ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Katz- We have several days we will all be together, going to dive deep on a bunch of different things.  What&#039;s nice about getting this group together is that we don&#039;t get to do this too often and focus and talk directly instead of being on laptops writing emails.  Good to talk about higher-level challenges and not just technical ones.  What are the biggest challenges for our users?  From the users perspective, three buckets to try and put things in- availability, performance, emerging workloads.  Good answers for HA.  Biggest pain points- software upgrades, trying to get to zero downtime.  Big users polled- whats biggest pain point- getting to zero downtime was #1 for all of them.  Another big one was non-blocking schema changes.  If there are exclusive locks being taken then it&#039;s practically the same as downtime.&lt;br /&gt;
Peter G- Just knowing ahead of time what is going to happen&lt;br /&gt;
Ketz- Another big theme is observability and be able to have predictability.  Second is performance- trying to always get better performance, the direct i/o work, its going to take some time but there is a lot of excitement there.  Also is vertical scalability where we can continue to grow up too.  Saw systems with 24TB of RAM, but how much of that can PG really use?  Also parallel operations.  Finally emerging workloads- new topic that is really an old topic and old thing which has been around a long time, but vectors are a big thing these days and very hot and that&#039;s a good thing.  Big arrays can push the limits of a page due to page size and how big the vector ends up being and people want to index these things and that can be a problem due to page size.  What else is everyone hearing?  Or project or other technical challenges?  What are people hearing?&lt;br /&gt;
Heikki- Connection pooling, max connections, can&#039;t change it after you start..  You need to set up pgbouncer but then that has challenges and limitations too.&lt;br /&gt;
Katz- Yes, very good point.&lt;br /&gt;
Andres- Getting HA is too hard and have to use a provider to get it.  Trying to write down all the things needed you quickly find our tools really aren&#039;t good.  Would be good to improve on that to make it realistic for users to have HA without a lot of effort.&lt;br /&gt;
Peter E- Biggest challenge is that our development velocity isn&#039;t growing.  Isn&#039;t shrinking either, but isn&#039;t growing.  Has been pretty constant for like 10 years.  Can use those resources to work on X or Y but if you want to work on something like major version upgrades which will take time every year forever and if you can&#039;t grow the pool then that takes a way a certain set of people.&lt;br /&gt;
Jeff- For a lot of projects, the velocity reduces, so it isn&#039;t bad that we have been able to maintain.&lt;br /&gt;
Andres- Agree with the concern, but not sure that the commits vs. lines changed is as much of a concern, but also the quality of code going in now is much higher vs. how it used to be, and if you look at the number of corruption bugs, that is much less now than it used to be.&lt;br /&gt;
Peter E- Quality of code is going up but there&#039;s still a limit with the number of people and if we aren&#039;t growing the number of people then it&#039;s hard to grow new features really.&lt;br /&gt;
Peter G- not that long ago there were much fewer (1?) person working full time on PG&lt;br /&gt;
Katz- There is generally positive thing but we need to figure out a way to grow the pool.&lt;br /&gt;
Andres- There is a danger when you have people full-time because new people won&#039;t be full time and we forget how weird things are in PG and makes it hard for new people to get into the community.  Because we do it full time, we kind of forget that people have to get started somehow.&lt;br /&gt;
Heikki- Definitely feel that, just hired someone new to work on PG, is kind of exciting to watch someone new learn about the cool things in PG but it&#039;s hard too because they have to figure out how to search the mailing list and such.&lt;br /&gt;
Nathan- People do find the process very intimidating and the culture of the mailing list and as you describe it you end up thinking about how strange it is.&lt;br /&gt;
Peter E- Maybe we over-document it and then things get out of date, and you can&#039;t delete wiki pages very easily(?).  Now you can just git clone, hack, git format-patch and send it.  Seems like maybe the wiki page has too much and should be made simpler.&lt;br /&gt;
Stephen- Mentioned GSoC and introducing new people&lt;br /&gt;
Heikki- Wasn&#039;t too bad to get new person&lt;br /&gt;
Melanie- Getting people engaged and keeping them motivated can be really hard and people can get very frustrated with the process.  Ultimate is to have people who are not full-time engaged and working on PG rather than just having full-time people.  There are so many pieces that people have to understand.  We aren&#039;t really helping new people and we aren&#039;t going to get new people if we don&#039;t put effort into this.  I need to figure out a minimal repro for a bug, I need to figure out how to benchmark a given change.  How to make those steps forward, even if they get detailed enough feedback ... I did a workshop recently on how to get feedback on a thread and how to take it and how to move forward with changes.  Can&#039;t just get detailed feedback and then not be able to say &amp;quot;I don&#039;t know what to do next&amp;quot; but some people aren&#039;t really sure about how to do it.  This group isn&#039;t as good at mentorship as we should be and we need to change our attitudes around that to try and be better.&lt;br /&gt;
Katz- How do we actually do that, able to do it internally to a degree, but how do we do this in the community, but we need to put the time into it.&lt;br /&gt;
Melanie- How I&#039;m still here- worked at Pivotal and do pair-programming, spent hours working on things together, similar at Microsoft with Andres working together over time to get things figured out and understand but isn&#039;t necessarily always realistic.&lt;br /&gt;
Amit- Is it possible to get people involved with smaller patches rather than getting new people in.&lt;br /&gt;
Melanie- A lot of PG people suggest that and ask people to review code, but if you&#039;re in that place where it&#039;s hard for you to understand what&#039;s going on, so reviewing a patch can take a very very long time and it ends up being a big time committment and they&#039;re not sure what to do next.&lt;br /&gt;
Katz- Much harder to provide reviews really&lt;br /&gt;
Nathan- Reviewing in a way to move the patch forward can be really hard.   Would spend days slugging through a given patch and that&#039;s really what you have to do to keep it going.&lt;br /&gt;
Melanie- Not clear that having done that review that you get to keep working on PG, isn&#039;t really something you can necessarily go to your boss and show what you did.&lt;br /&gt;
Andres- Sometimes you get involved and its really hard to figure out what is going on with people going in different directions sometimes and everyone sounds the same to someone new.&lt;br /&gt;
Peter G- When I was getting going didn&#039;t feel that people, but was a different time too.&lt;br /&gt;
Katz- How do we make it feel like it is more of a collaboration.  We want new people to come and to contribute to PG.&lt;br /&gt;
Melanie- If we had 10 more people who were super productive and be contributing and moving PG forward.  We need new people who are doing small things too but we really need 10 more people who are really contributing a lot.  If we could just all invest the time to find those people then we could move things forward very well.&lt;br /&gt;
Peter G- Not sure how relevant it is that committers are actually good&lt;br /&gt;
Mark- Sometimes people ask about getting beat up on list by Tom, but Tom was the one who told me what I was doing was wrong, and it ends up being a personality thing.  Not everyone understands that feedback about patches need to be taken in a positive way.&lt;br /&gt;
Melanie- It&#039;s about taking the time to respond to people, doesn&#039;t have to be super nice but it&#039;s about investing.&lt;br /&gt;
Mark- Pair-programming does happen in the companies but it just does&#039;t happen on the list.  Not sure how you could do it on the list.&lt;br /&gt;
Heikki- To Melanie&#039;s point, we could be better about making sure to tell people what to do next when they are given feedback.&lt;br /&gt;
Peter E- What was feedback that didn&#039;t help?&lt;br /&gt;
Melanie- Feedback was like &amp;quot;not sure if this is how it should be, could you check that?&amp;quot; which wasn&#039;t very clear and also needed to provide a slightly different repro.  Also, how to *prove* something is correct?  Not sure how to do it.&lt;br /&gt;
Peter E- Sometimes figuring out what the next steps are may actually be the job.  If you have a thing which is &amp;quot;not sure if this correct, can you do more to show it is correct?&amp;quot;&lt;br /&gt;
Melanie- People shy away from giving explicit instruction but that can actually be helpful to new people.&lt;br /&gt;
Jeff- On a public list, don&#039;t really want to tell people to do specific things, but maybe a different channel would be good to help with that, maybe do it off-list.&lt;br /&gt;
Heikki- Maybe phrase it differently&lt;br /&gt;
Melanie- Hash join memory patch- off-list debugging was done, but more things were done on list and included things like &amp;quot;hey, to do this we should use these functions&amp;quot; or similar.  Seems like people don&#039;t want to actually do that though even though it could be really helpful to new people.&lt;br /&gt;
Mark- Looked at peoples patches and it is missing the test code and sometimes add it but then it seems like hijacking credit from people and maybe that isn&#039;t good.&lt;br /&gt;
Heikki- Maybe that feels good to some people though&lt;br /&gt;
Melanie- Others may like that as it means other people are involved in helping with maintenance of it going forward&lt;br /&gt;
Peter G- If I don&#039;t know something then I don&#039;t really want to say it but sometimes want to say- hey have you thought about this differently, but that may not be helpful.&lt;br /&gt;
Melanie- With specific feedback then that could help still&lt;br /&gt;
Heikki- Another part of the problem is people submit patches and no one responds&lt;br /&gt;
Mark- Sometimes people propose things that no one wants&lt;br /&gt;
Andres- That does happen sometimes and the thread dies pretty quickly after just a couple of messages.  If the patch seems reasonable but you don&#039;t want to commit it right now.  Patches which are obviously wrong are easier to provide feedback on.&lt;br /&gt;
Peter G- Ambiguity kills patches and try to avoid that.&lt;br /&gt;
Melanie- It&#039;s about investing and you need to take the time to think about what the next steps are.  The reason to take the time to do that is to grow the people even if the patch itself is not as interesting to you.&lt;br /&gt;
Katz- Mentorship isn&#039;t going to happen on the list directly.  Need to do it over chat or zoom or similar.  Would be good to have some kind of organic process and it&#039;ll take time and it&#039;ll be more overhead.&lt;br /&gt;
Heikki- As part of CF process, would be nice if there was a step where people are told what the next step is for everything.  Maybe too much for the CFM?&lt;br /&gt;
Peter E- Some CFMs do do that.&lt;br /&gt;
Magnus- Doing that for 100+ patches takes an awful lot of time.&lt;br /&gt;
Katz- Developer work is more valued but the project work is also absolutely critical and if need more people doing that then we should say that.&lt;br /&gt;
Magnus- People are going to be more open to spending time mentoring people in the company vs. others who might get hired by competitors or other people.&lt;br /&gt;
Melanie- Would be good to have a goal to respond to all patches, maybe as CFM or others&lt;br /&gt;
Tom- No one wants to be speaking from the community, at least not without a long discussion&lt;br /&gt;
Noah- Reviewers do do that though, speak from the community in some small way&lt;br /&gt;
Jeff- A lot of orgs, projects are set up in a way that something will eventually get committed.  If we are speaking as a committer, we can say this is what I would do next, but even as a committer, only some patches actually get accepted and committed and giving feedback may not mean that the patch will end up being committed.&lt;br /&gt;
Joe- Would it make sense to have the CF have an option where someone can ask for a mentor?&lt;br /&gt;
Peter E- Would be adding another job on top of what we already have going on, barely have time to review things&lt;br /&gt;
Melanie- If you&#039;ve not met that person in real life, it might be difficult to do&lt;br /&gt;
Joe- Don&#039;t want to impose yourself on someone but if someone is asking for it and it could be off-list or non-public then it could work&lt;br /&gt;
Katz- Maybe have some idea about having office hours or something&lt;br /&gt;
Joe- Office hours, people don&#039;t end up showing up really&lt;br /&gt;
Katz- Maybe we could figure out an async way to do it.  Being able to just quickly ask someone about something can be really helpful.&lt;br /&gt;
Melanie- One things with that, everyone who wants their patch to get in might ask for a mentor though.  Maybe there could be some stage where you&#039;ve been involved long enough and you want to be around, maybe you could have someone who could talk to you or be there to ask questions of.&lt;br /&gt;
Noah- Maybe a box to check to just say that someone is open to off-list messages or such.&lt;br /&gt;
Heikki- maybe at the end of the CF, the CFM could just email people and ask them if they know what the next steps are with a their patch.&lt;br /&gt;
Magnus- Maybe a &amp;quot;need help&amp;quot; option in the CF?&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Action items ====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== High level thoughts and feedback on moving toward ICU as the preferred collation provider ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Jeff- Added a new wiki page which is linked, wanted to give general status info.  Basically the situation is that we have problems with glibc.  Benefits of ICU- platform independence and not depending on the OS for ordering.  With ICU would be out of our hands but in the hands of the unicode org rather than it being from the OS which would be better.  Independence also gives a bit more control over version changes.  Really hard to control version of glibc, bit easier to control the version of ICU.  Performance benefit also is good, can&#039;t use abbrev. keys with some versions of glibc.&lt;br /&gt;
Peter G- Blanket assumption is all versions and that is a good assumption&lt;br /&gt;
Jeff- More confidence in ICU for abbrev keys.&lt;br /&gt;
Peter G- One might ask why you make that distinction and one reason is just historical and glibc doesn&#039;t have the same priorities as ICU does.  The glibc folks didn&#039;t seem too concerned about the issues that they caused us, so why would it make sense to depend on glibc for such a critical thing.  ICU is used by other projects who have similar requirements as PG and they seem to be looking at the problem in the same way that we do which is probably the most important thing.  glibc doesn&#039;t seem to have the same sense of concern around it as we do.&lt;br /&gt;
Stephen- Everyone here is generally agreed on ICU being better, I think?&lt;br /&gt;
Jeff- One person not in the meeting today who has expressed some skepticism about it.&lt;br /&gt;
Joe- ICU vs. glibc for collation is one topic, but another is how well is ICU integrated into PG, not enough people are really using it, it seems.&lt;br /&gt;
Peter G- Definitely gotten easier in v15 to use ICU instead&lt;br /&gt;
Joe- Is it integrated enough to make ICU the default is the real question&lt;br /&gt;
Mark- Do we know that adopting ICU won&#039;t lead to corrupt indexes?&lt;br /&gt;
Jeff- Changing versions of ICU can change sort ordering and therefore there can be corruption if you change the version of ICU.&lt;br /&gt;
Peter G- One of the main goals of ICU is to have stability and to ensure that we don&#039;t end up with corrupted indexes.  Of course ICU can have bugs too, but they take it very seriously if there are such cases.&lt;br /&gt;
Joe- If you do an OS upgrade and have the ICU version change then that can cause problems, but you can install the matching version of ICU if needed unlike with glibc which can&#039;t really be changed due to everything else depending on it.&lt;br /&gt;
Jeff- Need to be able to load multiple versions to address these things&lt;br /&gt;
Dave P- Have used ICU in EPAS for a long time but it&#039;s an older version because it isn&#039;t easy to move people to a new version currently.&lt;br /&gt;
Joe- Yes, need to work on that to be able move from one to another.&lt;br /&gt;
Dave P- Assumes that there are multiple versions of ICU available for a given OS&lt;br /&gt;
Peter G- Yes, that needs to be addressed too and is certainly a part of the problem.&lt;br /&gt;
Noah- Not sure we see eye-to-eye with the ICU project in terms of having multiple versions around concurrently&lt;br /&gt;
Peter G- Older versions of ICU definitely seem to be around and have continued to work for a very long time.  Fundamentally you either have stability or don&#039;t, separate question about upgrade path, but a lot of people don&#039;t worry about that.&lt;br /&gt;
Noah- Not just a packaging issue necessarily really&lt;br /&gt;
Peter G- Can&#039;t really segregate the data from the code&lt;br /&gt;
Dave P- No clean separation between code and lookup tables&lt;br /&gt;
Joe- If you took new code and pointed it at the older tables you&#039;d still end up with changes, doesn&#039;t really work.  &amp;quot;copy-exact&amp;quot; came from intel / microchip world and idea is that everything is copied exactly and that&#039;s what you need to have to not break indexes&lt;br /&gt;
Peter G- Fundamentally you have stability or you don&#039;t and don&#039;t really see that changing.&lt;br /&gt;
Joe- In some performance testing, wrote collation torture test in python, one of the things noticed was in old versions of glibc it&#039;ll sort in 2 minutes or so in rhel7, with glibc 2.21 they pulled a cache out claiming it would help things and not hurt things, but took that 2m sort it went to 60m, but with ICU it&#039;s still 2m.  Every modern version of glibc has this issue.&lt;br /&gt;
Heikki- Asking the RMT, should we revert this change?&lt;br /&gt;
Katz- From the RMT perspective, thinking of using beta2 as the cut-off, last week in June.&lt;br /&gt;
Peter G- Making it the default signals intent, packagers aren&#039;t required to do things with that if they don&#039;t want to.&lt;br /&gt;
Jeff- initdb has a default also which a packager doesn&#039;t really control&lt;br /&gt;
Peter G- Would be good to have the option for people to opt-out of having it&lt;br /&gt;
Katz- Packagers have some discretion with what the default is.  ICU just focuses on collation, unlike glibc.  Platform independence with ICU and consistency.  Biggest area of concern is with upgrades because if you go from glibc with one major version to ICU in another major version, you have to rebuild all your indexes.&lt;br /&gt;
Jeff- We maintain the provider across the major version upgrade&lt;br /&gt;
Andres- pg_dump should really maintain collation/provider across.&lt;br /&gt;
Peter E- Historically we don&#039;t maintain it through for providers or locale and such&lt;br /&gt;
Dave P- This is going much deeper than we have time for.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Action items ====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cloud operators have data of value to this community, e.g. frequency of errors that should never happen.  What sort of data sharing regime might provide a good balance between value to the community and comfort for cloud operators? ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Noah- Get relatively little feedback from users.  Clouds could possibly provide feedback.  If the community thinks an error message never happens, but cloud operators do see it with some regularity.  What would the community like from the cloud operators?&lt;br /&gt;
Peter G- Have been doing this on some limited basis.  Back-patched a case with VACUUM where throw an error which we don&#039;t really need to.  Similar one in the last week.  What&#039;s notable- wasn&#039;t really based on some kind of measure, just based on knowing that this happens in the field, at all, was the important part.&lt;br /&gt;
Andres- think there is a lot of value in specific numbers, and if it changes over time (such as with crashes).  A lot of errors that we throw that should never happens.  Building list of errors that shouldn&#039;t ever happen but isn&#039;t easy to do.  Would be nice to have a list of things that really *really* shouldn&#039;t happen.&lt;br /&gt;
Katz- To the main question- talk to a lot of users and also $dayjob is a big users of PG itself.  If had known that a given change had a big impact on upgrades might have done something a bit differently with it.  $dayjob is generally open to sharing numbers and information with the community to help PG succeed and move forward, but need to know what data would be helpful to share.&lt;br /&gt;
Nathan- Most of my contributions are from customers who are seeing things.  Already happening from a development perspective.  Fleet-wide data information can help with things that maybe should be pulled out/removed since no one is using it.&lt;br /&gt;
Katz- Other thing is number one is &amp;quot;reduce my downtime&amp;quot; and can share that kind of info.  People trying to move more and more workloads to PG.&lt;br /&gt;
Noah- No shocks in terms of what seen from cloud run PG&lt;br /&gt;
Peter G- Also haven&#039;t really gotten much in the way of shocks&lt;br /&gt;
Melanie- Survey of how big are indexes and other things and was a paper/study that was published with lots of info.  Also looked at how many people are using PL vs. other features.&lt;br /&gt;
Peter G- Sometimes people have bias when it comes to what they think is being used and may not match.&lt;br /&gt;
Katz- can see lots of edge cases that not other people see.&lt;br /&gt;
Mark- If the cloud operators only operate the database in a certain way then only going to see certain bugs.  Engineers seem to think corruption isn&#039;t often happening, but support deals with corruption all the time and people don&#039;t remember what different versions of PG they upgraded through, etc.&lt;br /&gt;
Andres- Would be good to get stats for corruption, like what we have for checksum failures.  Lots of errors where an error is thrown but we continue on.  Increment some counter on corruption being detected.&lt;br /&gt;
Melanie- Do any of the logging tools provide that?&lt;br /&gt;
Stephen- Think pgbadger does?  Could, certainly.&lt;br /&gt;
Andres- Lot of things where we just don&#039;t see it because user can&#039;t reproduce it reliably.  If you just know that you have this issue happening maybe could do something about it.&lt;br /&gt;
Peter E- Could have stats for all error codes maybe&lt;br /&gt;
Joe- Yeah, kind of what I was getting at.&lt;br /&gt;
Andres- Many many are just error code internal though which isn&#039;t helpful.&lt;br /&gt;
Peter E- Need to do better about that rather than just using internal.&lt;br /&gt;
Peter E- Maybe make some error message sharable (no details included?)&lt;br /&gt;
Andres- Have just a way to have the format string maybe&lt;br /&gt;
Stephen- Maybe log line of code?&lt;br /&gt;
Tom- Maybe the function name?  Line might not be useful enough and changes&lt;br /&gt;
Peter G- Just knowing that something is happening at all would be something and better.&lt;br /&gt;
Andres- Anonymized stats could be useful, where could it go?&lt;br /&gt;
Peter G- Some things might be sensitive commercially even as problems.&lt;br /&gt;
Andres- Can&#039;t share some things but could share percentages and things&lt;br /&gt;
Heikki- Would be interested to see if cases not expected to happen, but actually are happening.&lt;br /&gt;
Katz- Would it help to have customers come to the mailing list?&lt;br /&gt;
Heikki- Happy to share things too&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
==== Action items ====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Any other business ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Dave P- Challenge coins&lt;br /&gt;
Joe- Packagers list include cloud providers?&lt;br /&gt;
Tom- Would that be useful for them?&lt;br /&gt;
Joe- Would be very helpful to know when things are coming&lt;br /&gt;
Peter E- That&#039;s generally public though&lt;br /&gt;
Joe- Don&#039;t believe we have a way to say that when we have a release tarball to tie it back to a specific commit which would be really good to have.&lt;br /&gt;
Tom- The git commit hash does go into the tarball&lt;br /&gt;
Joe- Can&#039;t test that really because of things that get generated being in the tarball.  Would be nice if process for building tarball gave a way to tie it back.&lt;br /&gt;
Michael- Debian reproducible builds might be something to look into&lt;br /&gt;
&lt;br /&gt;
Thomas- snapshot too old feature exists, doesn&#039;t work, no one is owning it, have talked about it a couple times.&lt;br /&gt;
Tom- probably just need to kill it&lt;br /&gt;
Peter E- Maybe leave the setting but ignore it&lt;br /&gt;
Andres- Pretty invasive so not good to do in back-branches ... maybe just hard-code it to off.  Wouldn&#039;t want to get rid of it in v16, but maybe v17&lt;br /&gt;
Thomas- I can write a patch for v17&lt;br /&gt;
&lt;br /&gt;
LUNCH!&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[[Category:Developer Meeting]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=File:Pgcon-dev-meeting-2023-2.png&amp;diff=37934</id>
		<title>File:Pgcon-dev-meeting-2023-2.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=File:Pgcon-dev-meeting-2023-2.png&amp;diff=37934"/>
		<updated>2023-06-02T16:39:41Z</updated>

		<summary type="html">&lt;p&gt;Dpage: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Licensing ==&lt;br /&gt;
{{The PostgreSQL Licence}}&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=File:Pgcon-dev-meeting-2023-1.png&amp;diff=37933</id>
		<title>File:Pgcon-dev-meeting-2023-1.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=File:Pgcon-dev-meeting-2023-1.png&amp;diff=37933"/>
		<updated>2023-06-02T16:38:47Z</updated>

		<summary type="html">&lt;p&gt;Dpage: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Licensing ==&lt;br /&gt;
{{The PostgreSQL Licence}}&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PgCon_2023_Developer_Meeting&amp;diff=37871</id>
		<title>PgCon 2023 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PgCon_2023_Developer_Meeting&amp;diff=37871"/>
		<updated>2023-05-26T10:52:24Z</updated>

		<summary type="html">&lt;p&gt;Dpage: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A meeting of the interested PostgreSQL developers is being planned for Tuesday 30 May, 2023 at the University of Ottawa, prior to pgCon 2023. In order to keep the numbers manageable, this meeting is by &#039;&#039;&#039;invitation only&#039;&#039;&#039;.&lt;br /&gt;
Any questions regarding the invitations to this event should be directed to the team of individuals tasked with coming up with the list of people to invite:&lt;br /&gt;
&lt;br /&gt;
* Andres Freund&lt;br /&gt;
* Stephen Frost&lt;br /&gt;
* Dave Page&lt;br /&gt;
&lt;br /&gt;
An Unconference will be held on Friday for in-depth discussion of technical topics.&lt;br /&gt;
&lt;br /&gt;
This is a PostgreSQL Community event.&lt;br /&gt;
&lt;br /&gt;
== Meeting Goals ==&lt;br /&gt;
&lt;br /&gt;
* Define the schedule for the upcoming releases&lt;br /&gt;
* Address any proposed timing, policy, or procedure issues&lt;br /&gt;
* Receive updates from project sub-teams on their activities and discuss any resulting issues or concerns.&lt;br /&gt;
* Address any proposed [http://en.wikipedia.org/wiki/Wicked_problem Wicked problems]&lt;br /&gt;
&lt;br /&gt;
== Time &amp;amp; Location ==&lt;br /&gt;
&lt;br /&gt;
The meeting will (probably) be:&lt;br /&gt;
&lt;br /&gt;
* 9:00AM to 12PM&lt;br /&gt;
* DMS 3105 - Desmarais Hall, 55 Laurier Avenue East&lt;br /&gt;
* University of Ottawa.&lt;br /&gt;
&lt;br /&gt;
Lunch will be served during the meeting.&lt;br /&gt;
&lt;br /&gt;
== COVID-19 ==&lt;br /&gt;
&lt;br /&gt;
The University of Ottawa&#039;s COVID-19 guidance can be found at https://www.uottawa.ca/en/covid-19. Wearing of masks at the Developer Meeting will be optional, however we do ask that people do not attend if they have COVID symptoms or have tested positive.&lt;br /&gt;
&lt;br /&gt;
== RSVPs ==&lt;br /&gt;
&lt;br /&gt;
The following people have RSVPed to the meeting (in alphabetical order, by surname). Note that we can accommodate a &#039;&#039;&#039;maximum of 30&#039;&#039;&#039;!&lt;br /&gt;
&lt;br /&gt;
# Nathan Bossart&lt;br /&gt;
# Joe Conway&lt;br /&gt;
# Jeff Davis&lt;br /&gt;
# Mark Dilger&lt;br /&gt;
# Peter Eisentraut&lt;br /&gt;
# Andres Freund&lt;br /&gt;
# Stephen Frost&lt;br /&gt;
# Etsuro Fujita&lt;br /&gt;
# Peter Geoghegan&lt;br /&gt;
# Magnus Hagander&lt;br /&gt;
# Amit Kapila&lt;br /&gt;
# Jonathan Katz&lt;br /&gt;
# Tom Lane&lt;br /&gt;
# Heikki Linnakangas&lt;br /&gt;
# Noah Misch&lt;br /&gt;
# Thomas Munro&lt;br /&gt;
# Dave Page&lt;br /&gt;
# Michael Paquier&lt;br /&gt;
# Melanie Plageman&lt;br /&gt;
# Masahiko Sawada&lt;br /&gt;
# Tomas Vondra&lt;br /&gt;
&lt;br /&gt;
The following people will not be in Ottawa, and do not plan to attend:&lt;br /&gt;
&lt;br /&gt;
# Masao Fujii&lt;br /&gt;
# Daniel Gustafsson&lt;br /&gt;
# Álvaro Herrera&lt;br /&gt;
# Tatsuo Ishii&lt;br /&gt;
# Alexander Korotkov&lt;br /&gt;
# Amit Langote&lt;br /&gt;
# Dean Rasheed&lt;br /&gt;
# David Rowley&lt;br /&gt;
&lt;br /&gt;
== Agenda Items ==&lt;br /&gt;
&lt;br /&gt;
* 16.0 release and commitfest schedule (Dave)&lt;br /&gt;
* Renaming &amp;quot;master&amp;quot; branch to &amp;quot;main&amp;quot;? (Michael)&lt;br /&gt;
* A brief PG15 RMT postmortem and what can we improve? (Jonathan)&lt;br /&gt;
* What are the big challenges for our users? What are the big challenges for us to solve? (Jonathan)&lt;br /&gt;
* (Possible topic on releases) (Jonathan)&lt;br /&gt;
* Cloud operators have data of value to this community, e.g. frequency of errors that should never happen.  What sort of data sharing regime might provide a good balance between value to the community and comfort for cloud operators? (Noah)&lt;br /&gt;
* &#039;&#039;Please add suggestions for agenda items here. (with your name)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Item&lt;br /&gt;
!Presenter&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|09:00 - 09:10&lt;br /&gt;
|Welcome and introductions&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:10 - 09:20&lt;br /&gt;
|Release and commitfest schedules&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:20 - 09:35&lt;br /&gt;
|Renaming &amp;quot;master&amp;quot; branch to &amp;quot;main&amp;quot;&lt;br /&gt;
|Michael Paquier&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:35 - 10:00&lt;br /&gt;
|A brief PG15 RMT postmortem and what can we improve?&lt;br /&gt;
|Jonathan Katz&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|10:00 - 10:30&lt;br /&gt;
|What are the big challenges for our users? What are the big challenges for us to solve?&lt;br /&gt;
|Jonathan Katz&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|10:30 - 11:00&lt;br /&gt;
|Coffee break&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:00 - 11:20&lt;br /&gt;
|(Possible topic on releases)&lt;br /&gt;
|Jonathan Katz&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:20 - 11:50&lt;br /&gt;
|Cloud operators have data of value to this community, e.g. frequency of errors that should never happen.  What sort of data sharing regime might provide a good balance between value to the community and comfort for cloud operators? &lt;br /&gt;
|Noah Misch&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:50 - 12:00&lt;br /&gt;
|Any other business&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|12:00&lt;br /&gt;
|Lunch&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: This timetable is a rough guide only. Items will start as soon as the previous discussion is complete (breaks will not move materially however). Any remaining time before lunch may be used for Commitfest item triage or other activities.&lt;br /&gt;
&lt;br /&gt;
[[Category:Developer Meeting]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PgCon_2023_Developer_Meeting&amp;diff=37679</id>
		<title>PgCon 2023 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PgCon_2023_Developer_Meeting&amp;diff=37679"/>
		<updated>2023-03-21T16:08:41Z</updated>

		<summary type="html">&lt;p&gt;Dpage: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A meeting of the interested PostgreSQL developers is being planned for Tuesday 30 May, 2023 at the University of Ottawa, prior to pgCon 2023. In order to keep the numbers manageable, this meeting is by &#039;&#039;&#039;invitation only&#039;&#039;&#039;.&lt;br /&gt;
Any questions regarding the invitations to this event should be directed to the team of individuals tasked with coming up with the list of people to invite:&lt;br /&gt;
&lt;br /&gt;
* Andres Freund&lt;br /&gt;
* Stephen Frost&lt;br /&gt;
* Dave Page&lt;br /&gt;
&lt;br /&gt;
An Unconference will be held on Friday for in-depth discussion of technical topics.&lt;br /&gt;
&lt;br /&gt;
This is a PostgreSQL Community event.&lt;br /&gt;
&lt;br /&gt;
== Meeting Goals ==&lt;br /&gt;
&lt;br /&gt;
* Define the schedule for the upcoming releases&lt;br /&gt;
* Address any proposed timing, policy, or procedure issues&lt;br /&gt;
* Receive updates from project sub-teams on their activities and discuss any resulting issues or concerns.&lt;br /&gt;
* Address any proposed [http://en.wikipedia.org/wiki/Wicked_problem Wicked problems]&lt;br /&gt;
&lt;br /&gt;
== Time &amp;amp; Location ==&lt;br /&gt;
&lt;br /&gt;
The meeting will (probably) be:&lt;br /&gt;
&lt;br /&gt;
* 9:00AM to 12PM&lt;br /&gt;
* DMS 3105 - Desmarais Hall, 55 Laurier Avenue East&lt;br /&gt;
* University of Ottawa.&lt;br /&gt;
&lt;br /&gt;
Lunch will be served during the meeting.&lt;br /&gt;
&lt;br /&gt;
== COVID-19 ==&lt;br /&gt;
&lt;br /&gt;
The University of Ottawa&#039;s COVID-19 guidance can be found at https://www.uottawa.ca/en/covid-19. Wearing of masks at the Developer Meeting will be optional, however we do ask that people do not attend if they have COVID symptoms or have tested positive.&lt;br /&gt;
&lt;br /&gt;
== RSVPs ==&lt;br /&gt;
&lt;br /&gt;
The following people have RSVPed to the meeting (in alphabetical order, by surname). Note that we can accommodate a &#039;&#039;&#039;maximum of 30&#039;&#039;&#039;!&lt;br /&gt;
&lt;br /&gt;
# Joe Conway&lt;br /&gt;
# Jeff Davis&lt;br /&gt;
# Stephen Frost&lt;br /&gt;
# Jonathan Katz&lt;br /&gt;
# Alexander Korotkov&lt;br /&gt;
# Tom Lane&lt;br /&gt;
# Dave Page&lt;br /&gt;
&lt;br /&gt;
The following people will not be in Ottawa, and do not plan to attend:&lt;br /&gt;
&lt;br /&gt;
== Agenda Items ==&lt;br /&gt;
&lt;br /&gt;
* 16.0 release and commitfest schedule (Dave)&lt;br /&gt;
* &#039;&#039;Please add suggestions for agenda items here. (with your name)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Item&lt;br /&gt;
!Presenter&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|09:00 - 09:10&lt;br /&gt;
|Welcome and introductions&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:10 - 09:20&lt;br /&gt;
|Release and commitfest schedules&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|??:?? - ??:??&lt;br /&gt;
|TBD&lt;br /&gt;
|TBD&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|10:30 - 11:00&lt;br /&gt;
|Coffee break&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|??:?? - ??:??&lt;br /&gt;
|TBD&lt;br /&gt;
|TBD&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:50 - 12:00&lt;br /&gt;
|Any other business&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|12:00&lt;br /&gt;
|Lunch&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: This timetable is a rough guide only. Items will start as soon as the previous discussion is complete (breaks will not move materially however). Any remaining time before lunch may be used for Commitfest item triage or other activities.&lt;br /&gt;
&lt;br /&gt;
[[Category:Developer Meeting]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PgCon_2023_Developer_Meeting&amp;diff=37670</id>
		<title>PgCon 2023 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PgCon_2023_Developer_Meeting&amp;diff=37670"/>
		<updated>2023-03-21T11:53:09Z</updated>

		<summary type="html">&lt;p&gt;Dpage: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A meeting of the interested PostgreSQL developers is being planned for Tuesday 30 May, 2023 at the University of Ottawa, prior to pgCon 2023. In order to keep the numbers manageable, this meeting is by &#039;&#039;&#039;invitation only&#039;&#039;&#039;.&lt;br /&gt;
Any questions regarding the invitations to this event should be directed to the team of individuals tasked with coming up with the list of people to invite:&lt;br /&gt;
&lt;br /&gt;
* Andres Freund&lt;br /&gt;
* Stephen Frost&lt;br /&gt;
* Dave Page&lt;br /&gt;
&lt;br /&gt;
An Unconference will be held on Friday for in-depth discussion of technical topics.&lt;br /&gt;
&lt;br /&gt;
This is a PostgreSQL Community event.&lt;br /&gt;
&lt;br /&gt;
== Meeting Goals ==&lt;br /&gt;
&lt;br /&gt;
* Define the schedule for the upcoming releases&lt;br /&gt;
* Address any proposed timing, policy, or procedure issues&lt;br /&gt;
* Receive updates from project sub-teams on their activities and discuss any resulting issues or concerns.&lt;br /&gt;
* Address any proposed [http://en.wikipedia.org/wiki/Wicked_problem Wicked problems]&lt;br /&gt;
&lt;br /&gt;
== Time &amp;amp; Location ==&lt;br /&gt;
&lt;br /&gt;
The meeting will (probably) be:&lt;br /&gt;
&lt;br /&gt;
* 9:00AM to 12PM&lt;br /&gt;
* DMS 3105 - Desmarais Hall, 55 Laurier Avenue East&lt;br /&gt;
* University of Ottawa.&lt;br /&gt;
&lt;br /&gt;
Lunch will be served during the meeting.&lt;br /&gt;
&lt;br /&gt;
== RSVPs ==&lt;br /&gt;
&lt;br /&gt;
The following people have RSVPed to the meeting (in alphabetical order, by surname). Note that we can accommodate a &#039;&#039;&#039;maximum of 30&#039;&#039;&#039;!&lt;br /&gt;
&lt;br /&gt;
# Stephen Frost&lt;br /&gt;
# Dave Page&lt;br /&gt;
&lt;br /&gt;
The following people will not be in Ottawa, and do not plan to attend:&lt;br /&gt;
&lt;br /&gt;
== Agenda Items ==&lt;br /&gt;
&lt;br /&gt;
* 16.0 release and commitfest schedule (Dave)&lt;br /&gt;
* &#039;&#039;Please add suggestions for agenda items here. (with your name)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Item&lt;br /&gt;
!Presenter&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|09:00 - 09:10&lt;br /&gt;
|Welcome and introductions&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:10 - 09:20&lt;br /&gt;
|Release and commitfest schedules&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|??:?? - ??:??&lt;br /&gt;
|TBD&lt;br /&gt;
|TBD&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|10:30 - 11:00&lt;br /&gt;
|Coffee break&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|??:?? - ??:??&lt;br /&gt;
|TBD&lt;br /&gt;
|TBD&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:50 - 12:00&lt;br /&gt;
|Any other business&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|12:00&lt;br /&gt;
|Lunch&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: This timetable is a rough guide only. Items will start as soon as the previous discussion is complete (breaks will not move materially however). Any remaining time before lunch may be used for Commitfest item triage or other activities.&lt;br /&gt;
&lt;br /&gt;
[[Category:Developer Meeting]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PgCon_2023_Developer_Meeting&amp;diff=37669</id>
		<title>PgCon 2023 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PgCon_2023_Developer_Meeting&amp;diff=37669"/>
		<updated>2023-03-21T09:59:31Z</updated>

		<summary type="html">&lt;p&gt;Dpage: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A meeting of the interested PostgreSQL developers is being planned for Tuesday 30 May, 2020 at the University of Ottawa, prior to pgCon 2023. In order to keep the numbers manageable, this meeting is by &#039;&#039;&#039;invitation only&#039;&#039;&#039;.&lt;br /&gt;
Any questions regarding the invitations to this event should be directed to the team of individuals tasked with coming up with the list of people to invite:&lt;br /&gt;
&lt;br /&gt;
* Andres Freund&lt;br /&gt;
* Stephen Frost&lt;br /&gt;
* Dave Page&lt;br /&gt;
&lt;br /&gt;
An Unconference will be held on Friday for in-depth discussion of technical topics.&lt;br /&gt;
&lt;br /&gt;
This is a PostgreSQL Community event.&lt;br /&gt;
&lt;br /&gt;
== Meeting Goals ==&lt;br /&gt;
&lt;br /&gt;
* Define the schedule for the upcoming releases&lt;br /&gt;
* Address any proposed timing, policy, or procedure issues&lt;br /&gt;
* Receive updates from project sub-teams on their activities and discuss any resulting issues or concerns.&lt;br /&gt;
* Address any proposed [http://en.wikipedia.org/wiki/Wicked_problem Wicked problems]&lt;br /&gt;
&lt;br /&gt;
== Time &amp;amp; Location ==&lt;br /&gt;
&lt;br /&gt;
The meeting will (probably) be:&lt;br /&gt;
&lt;br /&gt;
* 9:00AM to 12PM&lt;br /&gt;
* DMS 3105 - Desmarais Hall, 55 Laurier Avenue East&lt;br /&gt;
* University of Ottawa.&lt;br /&gt;
&lt;br /&gt;
Lunch will be served during the meeting.&lt;br /&gt;
&lt;br /&gt;
== RSVPs ==&lt;br /&gt;
&lt;br /&gt;
The following people have RSVPed to the meeting (in alphabetical order, by surname). Note that we can accommodate a &#039;&#039;&#039;maximum of 30&#039;&#039;&#039;!&lt;br /&gt;
&lt;br /&gt;
# Stephen Frost&lt;br /&gt;
# Dave Page&lt;br /&gt;
&lt;br /&gt;
The following people will not be in Ottawa, and do not plan to attend:&lt;br /&gt;
&lt;br /&gt;
== Agenda Items ==&lt;br /&gt;
&lt;br /&gt;
* 16.0 release and commitfest schedule (Dave)&lt;br /&gt;
* &#039;&#039;Please add suggestions for agenda items here. (with your name)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Item&lt;br /&gt;
!Presenter&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|09:00 - 09:10&lt;br /&gt;
|Welcome and introductions&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:10 - 09:20&lt;br /&gt;
|Release and commitfest schedules&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|??:?? - ??:??&lt;br /&gt;
|TBD&lt;br /&gt;
|TBD&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|10:30 - 11:00&lt;br /&gt;
|Coffee break&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|??:?? - ??:??&lt;br /&gt;
|TBD&lt;br /&gt;
|TBD&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:50 - 12:00&lt;br /&gt;
|Any other business&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|12:00&lt;br /&gt;
|Lunch&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: This timetable is a rough guide only. Items will start as soon as the previous discussion is complete (breaks will not move materially however). Any remaining time before lunch may be used for Commitfest item triage or other activities.&lt;br /&gt;
&lt;br /&gt;
[[Category:Developer Meeting]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PgCon_2023_Developer_Meeting&amp;diff=37668</id>
		<title>PgCon 2023 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PgCon_2023_Developer_Meeting&amp;diff=37668"/>
		<updated>2023-03-21T09:48:18Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* Time &amp;amp; Location */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A meeting of the interested PostgreSQL developers is being planned for Tuesday 30 May, 2020 at the University of Ottawa, prior to pgCon 2023. In order to keep the numbers manageable, this meeting is by &#039;&#039;&#039;invitation only&#039;&#039;&#039;.&lt;br /&gt;
Any questions regarding the invitations to this event should be directed to the team of individuals tasked with coming up with the list of people to invite:&lt;br /&gt;
&lt;br /&gt;
* Andres Freund&lt;br /&gt;
* Stephen Frost&lt;br /&gt;
* Dave Page&lt;br /&gt;
&lt;br /&gt;
An Unconference will be held on Friday for in-depth discussion of technical topics.&lt;br /&gt;
&lt;br /&gt;
This is a PostgreSQL Community event.&lt;br /&gt;
&lt;br /&gt;
== Meeting Goals ==&lt;br /&gt;
&lt;br /&gt;
* Define the schedule for the 16.0 release cycle&lt;br /&gt;
* Address any proposed timing, policy, or procedure issues&lt;br /&gt;
* Receive updates from project sub-teams on their activities and discuss any resulting issues or concerns.&lt;br /&gt;
* Address any proposed [http://en.wikipedia.org/wiki/Wicked_problem Wicked problems]&lt;br /&gt;
&lt;br /&gt;
== Time &amp;amp; Location ==&lt;br /&gt;
&lt;br /&gt;
The meeting will (probably) be:&lt;br /&gt;
&lt;br /&gt;
* 9:00AM to 3PM&lt;br /&gt;
* DMS 3105 - Desmarais Hall, 55 Laurier Avenue East&lt;br /&gt;
* University of Ottawa.&lt;br /&gt;
&lt;br /&gt;
Lunch will be served during the meeting.&lt;br /&gt;
&lt;br /&gt;
== RSVPs ==&lt;br /&gt;
&lt;br /&gt;
The following people have RSVPed to the meeting (in alphabetical order, by surname). Note that we can accommodate a &#039;&#039;&#039;maximum of 30&#039;&#039;&#039;!&lt;br /&gt;
&lt;br /&gt;
# Stephen Frost&lt;br /&gt;
# Dave Page&lt;br /&gt;
&lt;br /&gt;
The following people will not be in Ottawa, and do not plan to attend:&lt;br /&gt;
&lt;br /&gt;
== Agenda Items ==&lt;br /&gt;
&lt;br /&gt;
* 16.0 release and commitfest schedule (Dave)&lt;br /&gt;
* &#039;&#039;Please add suggestions for agenda items here. (with your name)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Item&lt;br /&gt;
!Presenter&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|09:00am - 09:10am&lt;br /&gt;
|Welcome and introductions&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|10:30am - 11:00am&lt;br /&gt;
|Coffee break&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|12:00pm&lt;br /&gt;
|Lunch&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|2:50pm - 3:00pm&lt;br /&gt;
|Any other business&lt;br /&gt;
|Dave Page&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: This timetable is a rough guide only. Items will start as soon as the previous discussion is complete (breaks will not move materially however). Any remaining time before lunch may be used for Commitfest item triage or other activities.&lt;br /&gt;
&lt;br /&gt;
[[Category:Developer Meeting]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PgCon_2023_Developer_Meeting&amp;diff=37667</id>
		<title>PgCon 2023 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PgCon_2023_Developer_Meeting&amp;diff=37667"/>
		<updated>2023-03-21T09:47:59Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* Time &amp;amp; Location */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A meeting of the interested PostgreSQL developers is being planned for Tuesday 30 May, 2020 at the University of Ottawa, prior to pgCon 2023. In order to keep the numbers manageable, this meeting is by &#039;&#039;&#039;invitation only&#039;&#039;&#039;.&lt;br /&gt;
Any questions regarding the invitations to this event should be directed to the team of individuals tasked with coming up with the list of people to invite:&lt;br /&gt;
&lt;br /&gt;
* Andres Freund&lt;br /&gt;
* Stephen Frost&lt;br /&gt;
* Dave Page&lt;br /&gt;
&lt;br /&gt;
An Unconference will be held on Friday for in-depth discussion of technical topics.&lt;br /&gt;
&lt;br /&gt;
This is a PostgreSQL Community event.&lt;br /&gt;
&lt;br /&gt;
== Meeting Goals ==&lt;br /&gt;
&lt;br /&gt;
* Define the schedule for the 16.0 release cycle&lt;br /&gt;
* Address any proposed timing, policy, or procedure issues&lt;br /&gt;
* Receive updates from project sub-teams on their activities and discuss any resulting issues or concerns.&lt;br /&gt;
* Address any proposed [http://en.wikipedia.org/wiki/Wicked_problem Wicked problems]&lt;br /&gt;
&lt;br /&gt;
== Time &amp;amp; Location ==&lt;br /&gt;
&lt;br /&gt;
The meeting will (probably) be:&lt;br /&gt;
&lt;br /&gt;
* 9:00AM to 1PM&lt;br /&gt;
* DMS 3105 - Desmarais Hall, 55 Laurier Avenue East&lt;br /&gt;
* University of Ottawa.&lt;br /&gt;
&lt;br /&gt;
Lunch will be served during the meeting.&lt;br /&gt;
&lt;br /&gt;
== RSVPs ==&lt;br /&gt;
&lt;br /&gt;
The following people have RSVPed to the meeting (in alphabetical order, by surname). Note that we can accommodate a &#039;&#039;&#039;maximum of 30&#039;&#039;&#039;!&lt;br /&gt;
&lt;br /&gt;
# Stephen Frost&lt;br /&gt;
# Dave Page&lt;br /&gt;
&lt;br /&gt;
The following people will not be in Ottawa, and do not plan to attend:&lt;br /&gt;
&lt;br /&gt;
== Agenda Items ==&lt;br /&gt;
&lt;br /&gt;
* 16.0 release and commitfest schedule (Dave)&lt;br /&gt;
* &#039;&#039;Please add suggestions for agenda items here. (with your name)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Item&lt;br /&gt;
!Presenter&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|09:00am - 09:10am&lt;br /&gt;
|Welcome and introductions&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|10:30am - 11:00am&lt;br /&gt;
|Coffee break&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|12:00pm&lt;br /&gt;
|Lunch&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|2:50pm - 3:00pm&lt;br /&gt;
|Any other business&lt;br /&gt;
|Dave Page&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: This timetable is a rough guide only. Items will start as soon as the previous discussion is complete (breaks will not move materially however). Any remaining time before lunch may be used for Commitfest item triage or other activities.&lt;br /&gt;
&lt;br /&gt;
[[Category:Developer Meeting]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PgCon_2023_Developer_Meeting&amp;diff=37666</id>
		<title>PgCon 2023 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PgCon_2023_Developer_Meeting&amp;diff=37666"/>
		<updated>2023-03-21T09:47:38Z</updated>

		<summary type="html">&lt;p&gt;Dpage: Created page with &amp;quot;A meeting of the interested PostgreSQL developers is being planned for Tuesday 30 May, 2020 at the University of Ottawa, prior to pgCon 2023. In order to keep the numbers mana...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A meeting of the interested PostgreSQL developers is being planned for Tuesday 30 May, 2020 at the University of Ottawa, prior to pgCon 2023. In order to keep the numbers manageable, this meeting is by &#039;&#039;&#039;invitation only&#039;&#039;&#039;.&lt;br /&gt;
Any questions regarding the invitations to this event should be directed to the team of individuals tasked with coming up with the list of people to invite:&lt;br /&gt;
&lt;br /&gt;
* Andres Freund&lt;br /&gt;
* Stephen Frost&lt;br /&gt;
* Dave Page&lt;br /&gt;
&lt;br /&gt;
An Unconference will be held on Friday for in-depth discussion of technical topics.&lt;br /&gt;
&lt;br /&gt;
This is a PostgreSQL Community event.&lt;br /&gt;
&lt;br /&gt;
== Meeting Goals ==&lt;br /&gt;
&lt;br /&gt;
* Define the schedule for the 16.0 release cycle&lt;br /&gt;
* Address any proposed timing, policy, or procedure issues&lt;br /&gt;
* Receive updates from project sub-teams on their activities and discuss any resulting issues or concerns.&lt;br /&gt;
* Address any proposed [http://en.wikipedia.org/wiki/Wicked_problem Wicked problems]&lt;br /&gt;
&lt;br /&gt;
== Time &amp;amp; Location ==&lt;br /&gt;
&lt;br /&gt;
The meeting will (probably) be:&lt;br /&gt;
&lt;br /&gt;
* 9:00AM to 3PM&lt;br /&gt;
* DMS 3105 - Desmarais Hall, 55 Laurier Avenue East&lt;br /&gt;
* University of Ottawa.&lt;br /&gt;
&lt;br /&gt;
Lunch will be served during the meeting.&lt;br /&gt;
&lt;br /&gt;
== RSVPs ==&lt;br /&gt;
&lt;br /&gt;
The following people have RSVPed to the meeting (in alphabetical order, by surname). Note that we can accommodate a &#039;&#039;&#039;maximum of 30&#039;&#039;&#039;!&lt;br /&gt;
&lt;br /&gt;
# Stephen Frost&lt;br /&gt;
# Dave Page&lt;br /&gt;
&lt;br /&gt;
The following people will not be in Ottawa, and do not plan to attend:&lt;br /&gt;
&lt;br /&gt;
== Agenda Items ==&lt;br /&gt;
&lt;br /&gt;
* 16.0 release and commitfest schedule (Dave)&lt;br /&gt;
* &#039;&#039;Please add suggestions for agenda items here. (with your name)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Item&lt;br /&gt;
!Presenter&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|09:00am - 09:10am&lt;br /&gt;
|Welcome and introductions&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|10:30am - 11:00am&lt;br /&gt;
|Coffee break&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|12:00pm&lt;br /&gt;
|Lunch&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|2:50pm - 3:00pm&lt;br /&gt;
|Any other business&lt;br /&gt;
|Dave Page&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: This timetable is a rough guide only. Items will start as soon as the previous discussion is complete (breaks will not move materially however). Any remaining time before lunch may be used for Commitfest item triage or other activities.&lt;br /&gt;
&lt;br /&gt;
[[Category:Developer Meeting]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=Design_Tools&amp;diff=35769</id>
		<title>Design Tools</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=Design_Tools&amp;diff=35769"/>
		<updated>2021-03-08T14:20:26Z</updated>

		<summary type="html">&lt;p&gt;Dpage: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Tools to help with designing a schema, via creating [https://en.wikipedia.org/wiki/Entity–relationship_model Entity-Relationship diagrams] and similar.  Most are GUI.  &lt;br /&gt;
&lt;br /&gt;
List also includes tools to help with &amp;quot;visualization&amp;quot; or &amp;quot;documentation&amp;quot; of already existing databases.  &lt;br /&gt;
&lt;br /&gt;
For tools to &amp;quot;run SQL and see its output&amp;quot; see [[PostgreSQL Clients]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Windows ==&lt;br /&gt;
&lt;br /&gt;
=== Proprietary ===&lt;br /&gt;
&lt;br /&gt;
==== pgModeler ====&lt;br /&gt;
&lt;br /&gt;
https://github.com/pgmodeler&lt;br /&gt;
&lt;br /&gt;
https://pgmodeler.io/&lt;br /&gt;
&lt;br /&gt;
Windows / Linux / macOS&lt;br /&gt;
&lt;br /&gt;
This is open source (GPLv3) and can be freely built yourself, if you have Qt available, but downloadable binaries appear to be time-limited demos that can be unlocked with paypal.&lt;br /&gt;
&lt;br /&gt;
==== Aqua Data Studio ====&lt;br /&gt;
&lt;br /&gt;
http://www.aquafold.com/aquadatastudio/er_modeler.html&lt;br /&gt;
&lt;br /&gt;
The Aqua Data Studio Entity Relationship Modeler (ER Modeler) helps you design complex database models for all major RDBMS vendors and versions. Use the Forward Engineer feature to model entities and convert them into SQL Scripts, or Reverse Engineer existing databases to visualize a database model.&lt;br /&gt;
&lt;br /&gt;
==== DeZign ====&lt;br /&gt;
&lt;br /&gt;
http://www.datanamic.com/dezign/index.html&lt;br /&gt;
&lt;br /&gt;
An intuitive database design and modeling tool for developers and DBA&#039;s that can help you model, create and maintain databases. The software uses entity relationship diagrams (ERDs, data models) to graphically design databases and automatically generates the most popular SQL and desktop databases.&lt;br /&gt;
&lt;br /&gt;
==== ERBuilder Data Modeler ====&lt;br /&gt;
&lt;br /&gt;
https://soft-builder.com/erbuilder-data-modeler/&lt;br /&gt;
&lt;br /&gt;
ERBuilder Data Modeler is a GUI data modeling tool that allows developers to visualize, design, and model databases by using entity relationship diagrams and automatically generates the most popular SQL databases. Generate and share the data Model documentation with your team. Optimize your data model by using advanced features such as test data generation, schema compare, and schema synchronization.&lt;br /&gt;
&lt;br /&gt;
==== PostgreSQL Maestro ====&lt;br /&gt;
&lt;br /&gt;
https://www.sqlmaestro.com/products/postgresql/maestro/&lt;br /&gt;
&lt;br /&gt;
==== Toad Data Modeler ====&lt;br /&gt;
&lt;br /&gt;
https://www.quest.com/products/toad-data-modeler/&lt;br /&gt;
&lt;br /&gt;
Toad Data Modeler enables you to rapidly deploy accurate changes to data structures across more than 20 different platforms. It allows you to construct logical and physical data models, compare and synchronize models, quickly generate complex SQL/DDL, create and modify scripts, as well as reverse and forward engineer both databases and data warehouse systems.&lt;br /&gt;
&lt;br /&gt;
May have free versions? Website is a bit of a wreck.&lt;br /&gt;
&lt;br /&gt;
==== EMS SQL Manager ====&lt;br /&gt;
&lt;br /&gt;
https://www.sqlmanager.net/en/products/postgresql/manager&lt;br /&gt;
&lt;br /&gt;
== Cross-Platform ==&lt;br /&gt;
&lt;br /&gt;
=== Open Source (Free) ===&lt;br /&gt;
&lt;br /&gt;
==== pgAdmin 4 ====&lt;br /&gt;
&lt;br /&gt;
https://www.pgadmin.org/&lt;br /&gt;
&lt;br /&gt;
Supports Windows, Linux and Mac. ERD Tool demo video at https://www.youtube.com/watch?v=2pxVCzRFGeg&lt;br /&gt;
&lt;br /&gt;
==== Kexi ====&lt;br /&gt;
&lt;br /&gt;
http://www.kexi-project.org/&lt;br /&gt;
&lt;br /&gt;
A visual database application creator, c.f. Access or FileMaker.   Windows/linux.&lt;br /&gt;
&lt;br /&gt;
==== Open System Architect ====&lt;br /&gt;
&lt;br /&gt;
http://www.codebydesign.com&lt;br /&gt;
&lt;br /&gt;
Windows / macOS / Linux / Solaris&lt;br /&gt;
&lt;br /&gt;
OSA currently supports data modelling (physical and logical) with UML in the works.&lt;br /&gt;
&lt;br /&gt;
==== SQL Power*Architect ====&lt;br /&gt;
&lt;br /&gt;
http://software.sqlpower.ca/page/architect&lt;br /&gt;
&lt;br /&gt;
Java&lt;br /&gt;
&lt;br /&gt;
The SQL Power Architect data modeling tool was created by data warehouse designers and has many unique features geared specifically for the data warehouse architect. It allows users to reverse-engineer existing databases, perform data profiling on source databases, and auto-generate ETL metadata.&lt;br /&gt;
&lt;br /&gt;
==== Valentina Studio ====&lt;br /&gt;
&lt;br /&gt;
https://www.valentina-db.com/en/valentina-studio-overview&lt;br /&gt;
&lt;br /&gt;
Windows / macOS / Linux&lt;br /&gt;
&lt;br /&gt;
Free version supports reverse-engineering an existing schema, but only the proprietary version supports forward-engineering.&lt;br /&gt;
&lt;br /&gt;
==== Open ModelSphere ====&lt;br /&gt;
&lt;br /&gt;
http://www.modelsphere.com/org/&lt;br /&gt;
&lt;br /&gt;
Java&lt;br /&gt;
&lt;br /&gt;
Open ModelSphere is a powerful data, process and UML modeling tool - supporting user interfaces in English and French.&lt;br /&gt;
&lt;br /&gt;
==== Umbrello ====&lt;br /&gt;
&lt;br /&gt;
https://umbrello.kde.org&lt;br /&gt;
&lt;br /&gt;
Windows / macOS / Linux&lt;br /&gt;
&lt;br /&gt;
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology.&lt;br /&gt;
&lt;br /&gt;
UML allows you to create diagrams of software and other systems in a standard format to document or design the structure of your programs.&lt;br /&gt;
&lt;br /&gt;
==== ERDesignerNG ====&lt;br /&gt;
&lt;br /&gt;
http://mogwai.sourceforge.net/erdesignerng.html&lt;br /&gt;
&lt;br /&gt;
Java, GPL&lt;br /&gt;
&lt;br /&gt;
=== Proprietary ===&lt;br /&gt;
&lt;br /&gt;
==== DbSchema ====&lt;br /&gt;
&lt;br /&gt;
http://www.dbschema.com&lt;br /&gt;
&lt;br /&gt;
Windows / macOS / Linux / Java&lt;br /&gt;
&lt;br /&gt;
Features interactive diagrams, relational data browse, schema compare and synchronization, query builder, query editor, HTML5 documentation, random data generator, forms and reports.&lt;br /&gt;
&lt;br /&gt;
==== DbVisualizer ====&lt;br /&gt;
&lt;br /&gt;
http://www.dbvis.com&lt;br /&gt;
&lt;br /&gt;
Windows / macOS / Linux / Java&lt;br /&gt;
&lt;br /&gt;
A client that does a lot of things other than schema design. It has a free version that provides many of the features, but not apparently design and DDL export.  DbVisualizer is a feature rich, intuitive multi-database tool for developers, database administrators, and increasingly for advanced analysts providing a single powerful interface across a wide variety of operating systems. With its easy-to-use and clean interface, DbVisualizer has proven to be one of the most cost effective database tools available, yet to mention that it runs on all major operating systems and supports all major RDBMS that are available. Users only need to learn and master one application. DbVisualizer integrates transparently with the operating system being used.&lt;br /&gt;
&lt;br /&gt;
==== DbWrench ====&lt;br /&gt;
&lt;br /&gt;
http://www.dbwrench.com&lt;br /&gt;
&lt;br /&gt;
Windows / macOS / Linux / Java&lt;br /&gt;
&lt;br /&gt;
Diagramming / Forward &amp;amp; Reverse Engineering&lt;br /&gt;
&lt;br /&gt;
==== Moon Modeler ====&lt;br /&gt;
&lt;br /&gt;
https://www.datensen.com&lt;br /&gt;
&lt;br /&gt;
Windows / macOS / Linux&lt;br /&gt;
&lt;br /&gt;
Features:&lt;br /&gt;
* Database modeling&lt;br /&gt;
* Visualization of nested structures and JSON&lt;br /&gt;
* SQL script generation&lt;br /&gt;
* Reverse engineering&lt;br /&gt;
* Support for PostgreSQL specifics, modeling of composite types, hierarchical JSON structures etc.&lt;br /&gt;
* GraphQL schema design&lt;br /&gt;
&lt;br /&gt;
==== StarUML ====&lt;br /&gt;
&lt;br /&gt;
http://staruml.io&lt;br /&gt;
&lt;br /&gt;
Windows / macOS / Ubuntu&lt;br /&gt;
&lt;br /&gt;
https://github.com/adrianandrei-ca/staruml-postgresql - extension to support PostgreSQL&lt;br /&gt;
&lt;br /&gt;
(This is version 2. The much older, open source version 1 is available at http://staruml.sourceforge.net/v1/download.php)&lt;br /&gt;
&lt;br /&gt;
==== Vertabelo ====&lt;br /&gt;
&lt;br /&gt;
http://www.vertabelo.com&lt;br /&gt;
&lt;br /&gt;
Vertabelo is an online database designer working under Chrome. It free to use for smaller projects and have a proprietary versions for larger database projects.&lt;br /&gt;
&lt;br /&gt;
Features:&lt;br /&gt;
* Intuitive HTML5 web interface (Chrome)&lt;br /&gt;
* OS independent&lt;br /&gt;
* Sharing DB model with team members&lt;br /&gt;
* Support for PostgreSQL, MySQL, Oracle, MS SQL Server, DB2, SQLite, HSQLDB,&lt;br /&gt;
* Model versioning&lt;br /&gt;
* Dynamic/Visual search&lt;br /&gt;
* Live model validation&lt;br /&gt;
* Reverse engineering&lt;br /&gt;
&lt;br /&gt;
==== Abris Platform ====&lt;br /&gt;
&lt;br /&gt;
https://abrisplatform.com&lt;br /&gt;
&lt;br /&gt;
Web Application for Linux/Windows, requires Apache+PHP or Docker&lt;br /&gt;
&lt;br /&gt;
Abris Platform is an application development platform for creating Web-based front-ends for PostgreSQL databases. Can be used to quickly create applications with convenient forms via SQL declarative description.&lt;br /&gt;
&lt;br /&gt;
Allows to create, alter and drop tables, views, foreign keys, triggers.&lt;br /&gt;
&lt;br /&gt;
==== Navicat ====&lt;br /&gt;
&lt;br /&gt;
https://www.navicat.com/en/products/navicat-for-postgresql&lt;br /&gt;
&lt;br /&gt;
Windows, macOS, iOS&lt;br /&gt;
&lt;br /&gt;
A general purpose client with good modeling features.&lt;br /&gt;
&lt;br /&gt;
== Commandline Tools ==&lt;br /&gt;
&lt;br /&gt;
Tools that take a description of a database schema in one format and convert it to SQL, and sometimes vice-versa.&lt;br /&gt;
&lt;br /&gt;
=== SQLFairy ===&lt;br /&gt;
&lt;br /&gt;
http://sqlfairy.sourceforge.net&lt;br /&gt;
&lt;br /&gt;
Perl, manipulate structured data definitions (mostly database schemas) in interesting ways, such as converting among different dialects of CREATE syntax (e.g., MySQL-to-Oracle), visualizations of schemas (pseudo-ER diagrams: GraphViz or GD), automatic code generation (using Class::DBI), converting non-RDBMS files to SQL schemas (xSV text files, Excel spreadsheets), serializing parsed schemas (via Storable, YAML and XML), creating documentation (HTML and POD), and more.&lt;br /&gt;
&lt;br /&gt;
=== DbVisualizer ===&lt;br /&gt;
&lt;br /&gt;
http://www.dbvis.com/&lt;br /&gt;
&lt;br /&gt;
Windows/OS X/Linux/UNIX&lt;br /&gt;
&lt;br /&gt;
DbVisualizer is a feature rich, intuitive multi-database tool for developers, database administrators, and increasingly for advanced analysts providing a single powerful interface across a wide variety of operating systems. With its easy-to-use and clean interface, DbVisualizer has proven to be one of the most cost effective database tools available, yet to mention that it runs on all major operating systems and supports all major RDBMS that are available. Users only need to learn and master one application. DbVisualizer integrates transparently with the operating system being used.&lt;br /&gt;
&lt;br /&gt;
=== schemalint ===&lt;br /&gt;
&lt;br /&gt;
https://github.com/kristiandupont/schemalint&lt;br /&gt;
&lt;br /&gt;
A tool to verify the database schema against [[Don&#039;t Do This]] recommendations.&lt;br /&gt;
&lt;br /&gt;
[[Category:Tool]]&lt;br /&gt;
&lt;br /&gt;
== Unknown ==&lt;br /&gt;
&lt;br /&gt;
==== Autodoc ====&lt;br /&gt;
&lt;br /&gt;
https://github.com/cbbrowne/autodoc&lt;br /&gt;
&lt;br /&gt;
perl, open source&lt;br /&gt;
&lt;br /&gt;
This is a utility which will run through PostgreSQL system tables and returns HTML, DOT, and several styles of XML which describe the database.&lt;br /&gt;
&lt;br /&gt;
As a result, documentation about a project can be generated quickly and be automatically updatable, yet have a quite professional look if you do some DSSSL/CSS work.&lt;br /&gt;
&lt;br /&gt;
==== Schema Spy ====&lt;br /&gt;
&lt;br /&gt;
http://schemaspy.org/&lt;br /&gt;
&lt;br /&gt;
LGPLv3 Java based console tool to auto-generate documentation in HTML format for an existing database. It uses [http://viz-js.com/ viz.js] or, optionally, [https://graphviz.org/ Graphviz] to render ERD diagrams. It can render markdown for database object comments. Also it allow some basic preprocessing defined with XML configuration file such as implied relationships, column suppression, foreign/remote tables.&lt;br /&gt;
&lt;br /&gt;
==== SQLFairy ====&lt;br /&gt;
&lt;br /&gt;
http://sqlfairy.sourceforge.net&lt;br /&gt;
&lt;br /&gt;
Perl, manipulate structured data definitions (mostly database schemas) in interesting ways, such as converting among different dialects of CREATE syntax (e.g., MySQL-to-Oracle), visualizations of schemas (pseudo-ER diagrams: GraphViz or GD), automatic code generation (using Class::DBI), converting non-RDBMS files to SQL schemas (xSV text files, Excel spreadsheets), serializing parsed schemas (via Storable, YAML and XML), creating documentation (HTML and POD), and more.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== DB Doc ====&lt;br /&gt;
&lt;br /&gt;
http://www.yohz.com/dbdoc_details.htm&lt;br /&gt;
&lt;br /&gt;
Windows/Linux(Wine)&lt;br /&gt;
&lt;br /&gt;
DB Doc helps you document your database structure and objects.  Documents can be generated as PDF reports, HTML pages, Microsoft Word (docx) file, or a single compiled HTML file.  The layout is fully customizable, and you can quickly view inter-object dependencies using hyperlinks.&lt;br /&gt;
&lt;br /&gt;
==== MicroOLAP Database Designer ====&lt;br /&gt;
&lt;br /&gt;
http://www.microolap.com/products/database/postgresql-designer/&lt;br /&gt;
&lt;br /&gt;
Windows ODBC&lt;br /&gt;
&lt;br /&gt;
Database Designer for PostgreSQL is an easy CASE tool with an intuitive graphical interface allowing you to build a clear and effective database structure visually, see the complete picture (diagram) representing all the tables, references between them, views, stored procedures and other objects. Then you can easily generate a physical database on a server, modify it according to any changes you made to the diagram using fast ALTER statements.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== GenMyModel ====&lt;br /&gt;
&lt;br /&gt;
https://www.genmymodel.com&lt;br /&gt;
&lt;br /&gt;
GenMyModel is an online modeling tool supporting [http://www.genmymodel.com/database-diagram-online database modeling]. It is free to use for smaller projects and have a proprietary version for larger database projects.&lt;br /&gt;
&lt;br /&gt;
Features:&lt;br /&gt;
* Intuitive HTML5 web interface (Chrome, Firefox, Safari, Internet Explorer)&lt;br /&gt;
* OS independent&lt;br /&gt;
* Instant sharing and collaboration&lt;br /&gt;
* Customizable SQL generators&lt;br /&gt;
* Model versioning&lt;br /&gt;
* Live model validation&lt;br /&gt;
&lt;br /&gt;
==== dbForge Studio for PostgreSQL ====&lt;br /&gt;
&lt;br /&gt;
* [https://www.devart.com/dbforge/postgresql/studio/ dbForge Studio for PostgreSQL]&lt;br /&gt;
&lt;br /&gt;
==== ModelRight ====&lt;br /&gt;
&lt;br /&gt;
* [http://www.modelright.com/ ModelRight]&lt;br /&gt;
&lt;br /&gt;
==== WaveMaker ====&lt;br /&gt;
&lt;br /&gt;
??? Doesn&#039;t seem to mention Postgres.&lt;br /&gt;
&lt;br /&gt;
* [http://www.wavemaker.com/ WaveMaker Visual Ajax Studio]&lt;br /&gt;
&lt;br /&gt;
== Other Resources ==&lt;br /&gt;
&lt;br /&gt;
* [[Community Guide to PostgreSQL GUI Tools]] miscellaneous utilities&lt;br /&gt;
* [[PostgreSQL Clients]] GUI SQL clients&lt;br /&gt;
* Old possibly abandoned projects, see [[Community_Guide_to_PostgreSQL_Tools_Abandoned]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=Speaker_Bureau&amp;diff=35466</id>
		<title>Speaker Bureau</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=Speaker_Bureau&amp;diff=35466"/>
		<updated>2020-10-14T15:28:48Z</updated>

		<summary type="html">&lt;p&gt;Dpage: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In order to help with the challenge of finding speakers for meetups please add your name to this page if you are willing to speak at a meetup. Currently (2020) the meetups will be virtual. At a minimum add your name, topic(s) and timezone. Feel free to add anything else you feel is relevant.&lt;br /&gt;
&lt;br /&gt;
I&#039;d invite anyone who wants to mentor new speakers to add their name as mentor as well.&lt;br /&gt;
&lt;br /&gt;
* Dave Cramer: Java and Postgresql, Logical Decoding, mentor&lt;br /&gt;
* Jonathan Katz: SCRAM, PostgreSQL + Kubernetes, PostgreSQL 13, Range Types + Applications, Building an App with a bunch of Postgres features (Logical decoding, CTEs, functions, range types, etc.), Data Types&lt;br /&gt;
* Stephen Frost: Security, PostgreSQL, other stuff&lt;br /&gt;
* Keith Fiske: Partitioning, Extensions, Administration, PG History &amp;amp; Features, Monitoring&lt;br /&gt;
* David Christensen: Replication, Bucardo, CTEs.&lt;br /&gt;
* David Fetter: PostgreSQL as a control plane, Fun with Foreign Data Wrappers, Hacking for Beginners&lt;br /&gt;
* Jennifer Scheuerell: Migrations, PostgreSQL and Django, mentor (Pacific time zone)&lt;br /&gt;
* Harry Arroyo: PostgreSQL with Laravel, Django, Java, IT Security Expert, TI Mentor, Sysadmin, FullStack Developer, Hacker, App Developer (Android and iOS), DBA and other Stuff.&lt;br /&gt;
* Jimmy Angelakos: PostgreSQL, performance, Full-Text Search, ETL with Python, Django (UK time zone)&lt;br /&gt;
* Tomas Vondra: PostgreSQL, performance, various extensions, hacking, community stuff&lt;br /&gt;
* Martín Marqués: PostgreSQL, replication, backups, autovacuum&lt;br /&gt;
* Andrew Dunstan: (EST) PostgreSQL, vacuuming and freezing, Data Types, Foreign Data Wrappers, SSL, Pgbouncer&lt;br /&gt;
* Nikhil Sontakke: PostgreSQL Architecture, Logical Decoding, BDR, PGLogical (India time zone)&lt;br /&gt;
* Hari Kiran: PostgreSQL, Replication, Partitioning, Oracle Migration, Monitoring, DBA (India time zone)&lt;br /&gt;
* Gianni Ciolli: Several topics, including: Physical/Logical Replication, Backup&amp;amp;restore, Query optimization, Database administration&lt;br /&gt;
* Tom Kincaid: High Availability, Deploying at Scale, MVCC, Partitioning, Performance Tuning&lt;br /&gt;
* Muhammad Haroon: PostgreSQL, High Availability, Logical Replication, Vacuum/AutoVacuum, Database Administration, Extensions, Disaster Recovery&lt;br /&gt;
* Christophe Pettus: Configuration and Tuning, Query Optimization, DBA Tasks and Mentoring, Disaster Recovery and Reliability Planning.&lt;br /&gt;
* Dave Page: pgAdmin, PostgreSQL project organisation/infrastructure&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=Pgfoundry&amp;diff=34736</id>
		<title>Pgfoundry</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=Pgfoundry&amp;diff=34736"/>
		<updated>2020-03-31T16:50:12Z</updated>

		<summary type="html">&lt;p&gt;Dpage: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;NOTE: pgFoundry has now been shut down permanently. Please see [[Project Hosting]] for alternatives.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;pgfoundry.org&#039;&#039;&#039; is a website hosting various Postgres-related software projects. It is the successor to [[gborg]], and runs using [http://gforge.org GForge], an open source collaborative software development tool.&lt;br /&gt;
&lt;br /&gt;
Web site: [http://pgfoundry.org pgfoundry.org]&lt;br /&gt;
&lt;br /&gt;
See [[Project Hosting]] for more information about what pgfoundry provides, and alternatives to it.&lt;br /&gt;
&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=Project_Hosting&amp;diff=34735</id>
		<title>Project Hosting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=Project_Hosting&amp;diff=34735"/>
		<updated>2020-03-31T16:46:37Z</updated>

		<summary type="html">&lt;p&gt;Dpage: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;PostgreSQL provides several way to integrate with [http://www.postgresql.org/docs/current/interactive/external-projects.html External Projects], both inside and outside of the core database itself.  The PostgreSQL Development Group (PGDG) provides some resources toward hosting PostgreSQL projects.&lt;br /&gt;
&lt;br /&gt;
Some add-on projects are considered critical to PostgreSQL adoption.  One such category are drivers for popular programming languages that are not shipped with the database itself (JDBC, ODBC, others).  Critical projects can request space on [http://git.postgresql.org git.postgresql.org] along with a [http://www.postgresql.org/community/lists/ mailing list].&lt;br /&gt;
&lt;br /&gt;
[https://github.com/ github] is a popular site for hosting projects using the git SCM.  It provides some basic project tools such as an issue tracker, wiki, and releases.  There is a [https://github.com/postgres/postgres PostgreSQL mirror at github] you can fork to easily create patches against the database source code.  github doesn&#039;t provide a good way to provide any sort of mailing list for the project.  Some projects have combined github for the main project hosting with [http://groups.google.com Google groups] to provide an archived mailing list.&lt;br /&gt;
&lt;br /&gt;
Other sites that are possible places to host a PostgreSQL related project at include:&lt;br /&gt;
* [http://sourceforge.net/ sourceforge]&lt;br /&gt;
* [http://code.google.com/ Google code]&lt;br /&gt;
* [https://launchpad.net/ Launchpad]&lt;br /&gt;
* [https://bitbucket.org/ bitbucket]&lt;br /&gt;
* [http://tuxfamily.org/en/about TuxFamily]&lt;br /&gt;
&lt;br /&gt;
Each of these sites has a different mix of features it supports.  Support for the preferred SCM of the developer is often the first thing considered, since some of these sites only support one of them.  For example, github only handles git, and Launchpad only supports Bazaar.&lt;br /&gt;
&lt;br /&gt;
[[Category:Community]]&lt;br /&gt;
[[Category:Development]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PgCon_2020_Developer_Meeting&amp;diff=34664</id>
		<title>PgCon 2020 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PgCon_2020_Developer_Meeting&amp;diff=34664"/>
		<updated>2020-02-20T14:40:56Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* Agenda */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A meeting of the interested PostgreSQL developers is being planned for Tuesday 26 May, 2020 at the University of Ottawa, prior to pgCon 2020. In order to keep the numbers manageable, this meeting is by &#039;&#039;&#039;invitation only&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Any questions regarding the invitations to this event should be directed to the team of individuals tasked with coming up with the list of people to invite:&lt;br /&gt;
&lt;br /&gt;
* Andres Freund&lt;br /&gt;
* Stephen Frost&lt;br /&gt;
* Dave Page&lt;br /&gt;
&lt;br /&gt;
The invitation list for the meeting has changed this year to include representatives from various project sub-teams, for example, packagers, the release team, Code of Conduct committee and more.&lt;br /&gt;
&lt;br /&gt;
An Unconference will be held on Friday for in-depth discussion of technical topics.&lt;br /&gt;
&lt;br /&gt;
This is a PostgreSQL Community event.&lt;br /&gt;
&lt;br /&gt;
== Meeting Goals ==&lt;br /&gt;
&lt;br /&gt;
* Define the schedule for the 14.0 release cycle&lt;br /&gt;
* Address any proposed timing, policy, or procedure issues&lt;br /&gt;
* Receive updates from project sub-teams on their activities and discuss any resulting issues or concerns.&lt;br /&gt;
* Address any proposed [http://en.wikipedia.org/wiki/Wicked_problem Wicked problems]&lt;br /&gt;
&lt;br /&gt;
== Time &amp;amp; Location ==&lt;br /&gt;
&lt;br /&gt;
The meeting will (probably) be:&lt;br /&gt;
&lt;br /&gt;
* 9:00AM to 3PM&lt;br /&gt;
* DMS 3105 - Desmarais Hall, 55 Laurier Avenue East&lt;br /&gt;
* University of Ottawa.&lt;br /&gt;
&lt;br /&gt;
Lunch will be served during the meeting.&lt;br /&gt;
&lt;br /&gt;
== RSVPs ==&lt;br /&gt;
&lt;br /&gt;
The following people have RSVPed to the meeting (in alphabetical order, by surname). Note that we can accommodate a &#039;&#039;&#039;maximum of 30&#039;&#039;&#039;!&lt;br /&gt;
&lt;br /&gt;
# Andres Freund&lt;br /&gt;
# Stephen Frost&lt;br /&gt;
# Dave Page&lt;br /&gt;
&lt;br /&gt;
The following people will not be in Ottawa, and do not plan to attend:&lt;br /&gt;
&lt;br /&gt;
== Agenda Items ==&lt;br /&gt;
&lt;br /&gt;
* 14.0 release and commitfest schedule (Dave)&lt;br /&gt;
* &#039;&#039;Please add suggestions for agenda items here. (with your name)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Item&lt;br /&gt;
!Presenter&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|09:00am - 09:10am&lt;br /&gt;
|Welcome and introductions&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|10:30am - 11:00am&lt;br /&gt;
|Coffee break&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|12:00pm&lt;br /&gt;
|Lunch&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|2:50pm - 3:00pm&lt;br /&gt;
|Any other business&lt;br /&gt;
|Dave Page&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: This timetable is a rough guide only. Items will start as soon as the previous discussion is complete (breaks will not move materially however). Any remaining time before lunch may be used for Commitfest item triage or other activities.&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=FOSDEM/PGDay_2020_Developer_Meeting&amp;diff=34607</id>
		<title>FOSDEM/PGDay 2020 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=FOSDEM/PGDay_2020_Developer_Meeting&amp;diff=34607"/>
		<updated>2020-01-27T09:41:57Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* Attendees */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A meeting for PostgreSQL developers will be held in conjunction with the PostgreSQL Europe FOSDEM Devroom&lt;br /&gt;
and FOSDEM/PGDay 2020 events in Brussels, Belgium. The meeting is planned for January 30. In order to keep the meeting focused, productive, and with a high level of interaction, the meeting is invite-only. Due to the large developer community, we cannot invite every active contributor. If you feel that you, or someone else, should&#039;ve been invited then please contact [mailto:daniel@yesql.se Daniel Gustafsson].&lt;br /&gt;
&lt;br /&gt;
This is a Community event, organized and financed by PostgreSQL Europe.&lt;br /&gt;
&lt;br /&gt;
== Time and Location ==&lt;br /&gt;
The meeting will be held at the [https://www3.hilton.com/en/hotels/brussels-capital-reg/hilton-brussels-grand-place-BRUGRHI/index.html Hilton Brussels Grand Place Hotel], which is the venue where [https://2020.fosdempgday.org/ FOSDEM PGDay 2020] is arranged the day after on January 31. The meeting starts at 9AM and is scheduled to end at 5PM. Coffee, tea and snacks will be provided during the day, as well as lunch.&lt;br /&gt;
&lt;br /&gt;
== Attendees ==&lt;br /&gt;
The following hackers have RSVP&#039;d to the meeting and will be attending:&lt;br /&gt;
* Joe Conway&lt;br /&gt;
* Dmitry Dolgov&lt;br /&gt;
* Peter Eisentraut&lt;br /&gt;
* Andres Freund&lt;br /&gt;
* Stephen Frost&lt;br /&gt;
* Daniel Gustafsson&lt;br /&gt;
* Magnus Hagander&lt;br /&gt;
* Bruce Momjian&lt;br /&gt;
* Julien Rouhaud&lt;br /&gt;
* Tomas Vondra&lt;br /&gt;
* Vik Fearing&lt;br /&gt;
* Devrim Gündüz&lt;br /&gt;
* Álvaro Herrera&lt;br /&gt;
* ..more TBA&lt;br /&gt;
&lt;br /&gt;
The following hackers have been invited but are unable to attend:&lt;br /&gt;
* Andrew Dunstan&lt;br /&gt;
* Kyotaro Horiguchi&lt;br /&gt;
* Alexander Korotkov&lt;br /&gt;
* Tom Lane&lt;br /&gt;
* Amit Langote&lt;br /&gt;
* Noah Misch&lt;br /&gt;
* Thomas Munro&lt;br /&gt;
* Michael Paquier&lt;br /&gt;
* Peter Geoghegan&lt;br /&gt;
* Jeff Davis&lt;br /&gt;
* Masahiko Sawada&lt;br /&gt;
* Simon Riggs&lt;br /&gt;
* Andrew Gierth&lt;br /&gt;
* John Naylor&lt;br /&gt;
* Heikki Linnakangas&lt;br /&gt;
* Robert Haas&lt;br /&gt;
* Christoph Berg&lt;br /&gt;
* Dave Page&lt;br /&gt;
&lt;br /&gt;
== Suggested Topics ==&lt;br /&gt;
Please add topics for discussion to the list:&lt;br /&gt;
* CI build feedback/information directly in CF app (Daniel)&lt;br /&gt;
* Update from packagers (Devrim)&lt;br /&gt;
* Report from SQL working group (Peter)&lt;br /&gt;
* CoC committee report&lt;br /&gt;
* Commitfest triage&lt;br /&gt;
&lt;br /&gt;
== Agenda ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Item&lt;br /&gt;
!Presenter&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|09:00 - 09:10&lt;br /&gt;
|Welcome and introductions&lt;br /&gt;
|Daniel&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:10 - 09:20&lt;br /&gt;
|TBD&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:20 - 09:40&lt;br /&gt;
|TBD&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:40 - 10:00&lt;br /&gt;
|TBD&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|10:00 - 10:20&lt;br /&gt;
|TBD&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|10:20 - 10:30&lt;br /&gt;
|TBD&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|10:30 - 11:00&lt;br /&gt;
|Coffee break&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:00 - 11:15&lt;br /&gt;
|TBD&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:15 - 12:30&lt;br /&gt;
|TBD&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|12:30 - 13:30&lt;br /&gt;
|Lunch&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|13:30 - 15:00&lt;br /&gt;
|Commitfest Triage&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|15:00 - 15:30&lt;br /&gt;
|Tea break&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|15:30 - 16:45&lt;br /&gt;
|Commitfest Triage&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|16:45 - 17:00&lt;br /&gt;
|Any other business, plans for next year&lt;br /&gt;
|Daniel&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|17:00&lt;br /&gt;
|Finish&lt;br /&gt;
|&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PGFGMembers&amp;diff=34529</id>
		<title>PGFGMembers</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PGFGMembers&amp;diff=34529"/>
		<updated>2020-01-03T09:41:40Z</updated>

		<summary type="html">&lt;p&gt;Dpage: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Active PGFG Members ==&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!Name&lt;br /&gt;
!Location&lt;br /&gt;
!Role&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Andreas Scherbaum&lt;br /&gt;
| Germany&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Christopher Browne&lt;br /&gt;
|Canada&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Dave Cramer&lt;br /&gt;
|Canada&lt;br /&gt;
|Backup Liaison&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Dave Page&lt;br /&gt;
|U.K.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|David Fetter&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Devrim Gunduz&lt;br /&gt;
|U.K.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Granthana Biswas&lt;br /&gt;
|Germany&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Greg Sabino Mullane&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Hans-Jürgen Schönig&lt;br /&gt;
|Germany&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Joe Conway&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Jonathan Katz&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Lætitia Avrot&lt;br /&gt;
|France&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Larry Rosenman&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Marc Fournier&lt;br /&gt;
|Canada&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Mark Wong&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Michael Meskes&lt;br /&gt;
|Germany&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Noah Misch&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Oleg Bartunov&lt;br /&gt;
|Russian Fed.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Peter Eisentraut&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Renee Phillips&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Robert Treat&lt;br /&gt;
|U.S.A&lt;br /&gt;
|Liaison&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Valeria Kaplan&lt;br /&gt;
|U.K.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Vik Fearing&lt;br /&gt;
|France&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Past PGFG Members ==&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!Name&lt;br /&gt;
!Location&lt;br /&gt;
!Role&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|A. Elein Mustain&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Andrew Sullivan&lt;br /&gt;
|Canada&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Gavin M. Roy&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Josh Berkus&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Lamar Owen&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
|Rod Taylor&lt;br /&gt;
|Canada&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
|Tatsuo Ishii&lt;br /&gt;
|Japan&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Joshua Drake&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:PGFG]]&lt;br /&gt;
[[Category:Funds]]&lt;br /&gt;
[[Category:Donations]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PGFGMembers&amp;diff=34528</id>
		<title>PGFGMembers</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PGFGMembers&amp;diff=34528"/>
		<updated>2020-01-02T13:28:53Z</updated>

		<summary type="html">&lt;p&gt;Dpage: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Active PGFG Members ==&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!Name&lt;br /&gt;
!Location&lt;br /&gt;
!Role&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Andreas Scherbaum&lt;br /&gt;
| Germany&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Christopher Browne&lt;br /&gt;
|Canada&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Dave Cramer&lt;br /&gt;
|Canada&lt;br /&gt;
|Backup Liaison&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Dave Page&lt;br /&gt;
|U.K.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|David Fetter&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Devrim Gunduz&lt;br /&gt;
|U.K.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Granthana Biswas&lt;br /&gt;
|Germany&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Greg Sabino Mullane&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Hans-Jürgen Schönig&lt;br /&gt;
|Germany&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Joe Conway&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Jonathan Katz&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Josh Berkus&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Lætitia Avrot&lt;br /&gt;
|France&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Larry Rosenman&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Marc Fournier&lt;br /&gt;
|Canada&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Mark Wong&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Michael Meskes&lt;br /&gt;
|Germany&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Noah Misch&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Oleg Bartunov&lt;br /&gt;
|Russian Fed.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Peter Eisentraut&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Renee Phillips&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Robert Treat&lt;br /&gt;
|U.S.A&lt;br /&gt;
|Liaison&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Valeria Kaplan&lt;br /&gt;
|U.K.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Vik Fearing&lt;br /&gt;
|France&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Past PGFG Members ==&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!Name&lt;br /&gt;
!Location&lt;br /&gt;
!Role&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|A. Elein Mustain&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Andrew Sullivan&lt;br /&gt;
|Canada&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Gavin M. Roy&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Lamar Owen&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
|Rod Taylor&lt;br /&gt;
|Canada&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
|Tatsuo Ishii&lt;br /&gt;
|Japan&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Joshua Drake&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:PGFG]]&lt;br /&gt;
[[Category:Funds]]&lt;br /&gt;
[[Category:Donations]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PGFGMembers&amp;diff=34527</id>
		<title>PGFGMembers</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PGFGMembers&amp;diff=34527"/>
		<updated>2020-01-02T13:26:35Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* Active PGFG Members */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Active PGFG Members ==&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!Name&lt;br /&gt;
!Location&lt;br /&gt;
!Role&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Andreas Scherbaum&lt;br /&gt;
| Germany&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Christopher Browne&lt;br /&gt;
|Canada&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Dave Cramer&lt;br /&gt;
|Canada&lt;br /&gt;
|Backup Liaison&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Dave Page&lt;br /&gt;
|U.K.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|David Fetter&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Devrim Gunduz&lt;br /&gt;
|U.K.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Granthana Biswas&lt;br /&gt;
|Germany&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Greg Sabino Mullane&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Hans-Jürgen Schönig&lt;br /&gt;
|Germany&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Joe Conway&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Jonathan Katz&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Josh Berkus&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Lætitia Avrot&lt;br /&gt;
|France&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Larry Rosenman&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Marc Fournier&lt;br /&gt;
|Canada&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Mark Wong&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Michael Meskes&lt;br /&gt;
|Germany&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Noah Misch&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Oleg Bartunov&lt;br /&gt;
|Russian Fed.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Peter Eisentraut&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Renee Phillips&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Robert Treat&lt;br /&gt;
|U.S.A&lt;br /&gt;
|Liaison&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Valeria Kaplan&lt;br /&gt;
|U.K.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Vik Fearing&lt;br /&gt;
|France&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Past PGFG Members ==&lt;br /&gt;
* A. Elein Mustain  	U.S.A.  	Member&lt;br /&gt;
* Andrew Sullivan 	Canada 	Member&lt;br /&gt;
* Gavin M. Roy 	U.S.A. 	Member&lt;br /&gt;
* Lamar Owen 	U.S.A. 	Member&lt;br /&gt;
* Rod Taylor 	Canada 	Member&lt;br /&gt;
* Tatsuo Ishii 	Japan 	Member&lt;br /&gt;
* Joshua Drake 	U.S.A. 	Member&lt;br /&gt;
&lt;br /&gt;
[[Category:PGFG]]&lt;br /&gt;
[[Category:Funds]]&lt;br /&gt;
[[Category:Donations]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PGFGMembers&amp;diff=34526</id>
		<title>PGFGMembers</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PGFGMembers&amp;diff=34526"/>
		<updated>2020-01-02T13:26:08Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* Active PGFG Members */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Active PGFG Members ==&lt;br /&gt;
&lt;br /&gt;
{| cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
!Name&lt;br /&gt;
!Location&lt;br /&gt;
!Role&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Andreas Scherbaum&lt;br /&gt;
| Germany&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Christopher Browne&lt;br /&gt;
|Canada&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Dave Cramer&lt;br /&gt;
|Canada&lt;br /&gt;
|Backup Liaison&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Dave Page&lt;br /&gt;
|U.K.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|David Fetter&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Devrim Gunduz&lt;br /&gt;
|Turkey&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Granthana Biswas&lt;br /&gt;
|Germany&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Greg Sabino Mullane&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Hans-Jürgen Schönig&lt;br /&gt;
|Germany&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Joe Conway&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Jonathan Katz&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Josh Berkus&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Lætitia Avrot&lt;br /&gt;
|France&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Larry Rosenman&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Marc Fournier&lt;br /&gt;
|Canada&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Mark Wong&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Michael Meskes&lt;br /&gt;
|Germany&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Noah Misch&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Oleg Bartunov&lt;br /&gt;
|Russian Fed.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Peter Eisentraut&lt;br /&gt;
|Germany&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Renee Phillips&lt;br /&gt;
|U.S.A.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Robert Treat&lt;br /&gt;
|U.S.A&lt;br /&gt;
|Liaison&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Valeria Kaplan&lt;br /&gt;
|U.K.&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Vik Fearing&lt;br /&gt;
|France&lt;br /&gt;
|Member&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Past PGFG Members ==&lt;br /&gt;
* A. Elein Mustain  	U.S.A.  	Member&lt;br /&gt;
* Andrew Sullivan 	Canada 	Member&lt;br /&gt;
* Gavin M. Roy 	U.S.A. 	Member&lt;br /&gt;
* Lamar Owen 	U.S.A. 	Member&lt;br /&gt;
* Rod Taylor 	Canada 	Member&lt;br /&gt;
* Tatsuo Ishii 	Japan 	Member&lt;br /&gt;
* Joshua Drake 	U.S.A. 	Member&lt;br /&gt;
&lt;br /&gt;
[[Category:PGFG]]&lt;br /&gt;
[[Category:Funds]]&lt;br /&gt;
[[Category:Donations]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=IRC2RWNames&amp;diff=34411</id>
		<title>IRC2RWNames</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=IRC2RWNames&amp;diff=34411"/>
		<updated>2019-11-27T10:59:40Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* List of IRC nicks with their respective real world names */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== List of IRC nicks with their respective real world names ===&lt;br /&gt;
&lt;br /&gt;
You can find many PostgreSQL users and developers chatting in [irc://irc.freenode.net/postgresql #postgresql on freenode].  Here&#039;s more information about some of the regulars there.  &#039;&#039;&#039;Note:&#039;&#039;&#039; people are on the list below only when they want to be.  Do not (re-)add anyone without their express permission.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Nickname || Real Name&lt;br /&gt;
|-&lt;br /&gt;
|ads || Andreas Scherbaum&lt;br /&gt;
|-&lt;br /&gt;
|agliodbs, aglio2 (freenode), jberkus (oftc) || Josh Berkus&lt;br /&gt;
|-&lt;br /&gt;
|ahammond || Andrew Hammond&lt;br /&gt;
|-&lt;br /&gt;
|akretschmer || Andreas Kretschmer&lt;br /&gt;
|-&lt;br /&gt;
|alvherre || Alvaro Herrera&lt;br /&gt;
|-&lt;br /&gt;
|andres || Andres Freund&lt;br /&gt;
|-&lt;br /&gt;
|Assid || Satish Alwani&lt;br /&gt;
|-&lt;br /&gt;
|aurynn || Aurynn Shaw&lt;br /&gt;
|-&lt;br /&gt;
|beaud76 || Philippe Beaudoin&lt;br /&gt;
|-&lt;br /&gt;
|BlueAidan/BlueAidan_work || [[user:davidblewett | David Blewett]]&lt;br /&gt;
|-&lt;br /&gt;
|bmomjian || Bruce Momjian&lt;br /&gt;
|-&lt;br /&gt;
|cbbrowne || Christopher Browne&lt;br /&gt;
|-&lt;br /&gt;
|cce || Clark C. Evans&lt;br /&gt;
|-&lt;br /&gt;
|cclavadetscher || Charles Clavadetscher&lt;br /&gt;
|-&lt;br /&gt;
|chicagoben || Benjamin Johnson&lt;br /&gt;
|-&lt;br /&gt;
|crab || Abhijit Menon-Sen&lt;br /&gt;
|-&lt;br /&gt;
|Crad || Gavin M. Roy&lt;br /&gt;
|-&lt;br /&gt;
|daamien ||  Damien Clochard&lt;br /&gt;
|-&lt;br /&gt;
|DarcyB || Darcy Buskermolen&lt;br /&gt;
|-&lt;br /&gt;
|darkixion || Thom Brown&lt;br /&gt;
|-&lt;br /&gt;
|davidfetter || David Fetter&lt;br /&gt;
|-&lt;br /&gt;
|dbb || Brian M Hamlin  / darkblue_b&lt;br /&gt;
|-&lt;br /&gt;
|dcolish || [http://www.unencrypted.org Dan Colish]&lt;br /&gt;
|-&lt;br /&gt;
|dcramer || Dave Cramer&lt;br /&gt;
|-&lt;br /&gt;
|DeciBull, TheCougar || Jim C. Nasby&lt;br /&gt;
|-&lt;br /&gt;
|dennisb || Dennis Bj&amp;amp;ouml;rklund&lt;br /&gt;
|-&lt;br /&gt;
|depesz || Hubert Lubaczewski&lt;br /&gt;
|-&lt;br /&gt;
|devrimgunduz || Devrim G&amp;amp;uuml;nd&amp;amp;uuml;z&lt;br /&gt;
|-&lt;br /&gt;
|digicon || [http://digicondev.blogspot.com Zach Conrad]&lt;br /&gt;
|-&lt;br /&gt;
|digitalknight || Atri Sharma&lt;br /&gt;
|-&lt;br /&gt;
|dim || [http://tapoueh.org Dimitri Fontaine]&lt;br /&gt;
|-&lt;br /&gt;
|direvus || Brendan Jurd&lt;br /&gt;
|-&lt;br /&gt;
|drbair || Ryan Bair&lt;br /&gt;
|-&lt;br /&gt;
|DrLou || Lou Picciano&lt;br /&gt;
|-&lt;br /&gt;
|duck_tape || Adi Alurkar&lt;br /&gt;
|-&lt;br /&gt;
|dvl || [http://langille.org/ Dan Langille]&lt;br /&gt;
|-&lt;br /&gt;
|eggyknap || Joshua Tolley&lt;br /&gt;
|-&lt;br /&gt;
|endpoint_david || David Christensen&lt;br /&gt;
|-&lt;br /&gt;
|eulerto || Euler Taveira&lt;br /&gt;
|-&lt;br /&gt;
|f3ew/devdas || Devdas Vasu Bhagat&lt;br /&gt;
|-&lt;br /&gt;
|feivel || Michael Meskes&lt;br /&gt;
|-&lt;br /&gt;
|frost242 || Thomas Reiss&lt;br /&gt;
|-&lt;br /&gt;
|elein || Elein Mustain&lt;br /&gt;
|-&lt;br /&gt;
|Gibheer || Stefan Radomski&lt;br /&gt;
|-&lt;br /&gt;
|gleu || Guillaume Lelarge&lt;br /&gt;
|-&lt;br /&gt;
|gorthx || [[User:Gabrielle|Gabrielle Roth]]&lt;br /&gt;
|-&lt;br /&gt;
|grzm || Michael Glaesemann&lt;br /&gt;
|-&lt;br /&gt;
|gsmet || Guillaume Smet&lt;br /&gt;
|-&lt;br /&gt;
|gregs1104 || Greg Smith&lt;br /&gt;
|-&lt;br /&gt;
|gurjeet || [[User:singh.gurjeet|Gurjeet Singh]]&lt;br /&gt;
|-&lt;br /&gt;
|G_SabinoMullane || Greg Sabino Mullane&lt;br /&gt;
|-&lt;br /&gt;
|HarrisonF || Harrison Fisk&lt;br /&gt;
|-&lt;br /&gt;
|ioguix || Jehan-Guillaume de Rorthais&lt;br /&gt;
|-&lt;br /&gt;
|indigo || Phil Frost&lt;br /&gt;
|-&lt;br /&gt;
|intgr || Marti Raudsepp&lt;br /&gt;
|-&lt;br /&gt;
|iwantchips || [https://payalsingh.me Payal Singh]&lt;br /&gt;
|-&lt;br /&gt;
|JanniCash || Jan Wieck&lt;br /&gt;
|-&lt;br /&gt;
|jconway || Joe Conway&lt;br /&gt;
|-&lt;br /&gt;
|jdavis, jdavis_ || Jeff Davis&lt;br /&gt;
|-&lt;br /&gt;
|jkatz05 || Jonathan S. Katz&lt;br /&gt;
|-&lt;br /&gt;
|johto || Marko Tiikkaja&lt;br /&gt;
|-&lt;br /&gt;
|jurka || Kris Jurka&lt;br /&gt;
|-&lt;br /&gt;
|justatheory || David Wheeler&lt;br /&gt;
|-&lt;br /&gt;
|jpa || Jean-Paul Argudo&lt;br /&gt;
|-&lt;br /&gt;
|jwp || James Pye&lt;br /&gt;
|-&lt;br /&gt;
|j_williams || Josh Williams&lt;br /&gt;
|-&lt;br /&gt;
|kandreas || Andreas Karlson&lt;br /&gt;
|-&lt;br /&gt;
|keithf4 || [http://www.keithf4.com Keith Fiske]&lt;br /&gt;
|-&lt;br /&gt;
|kgrittn || Kevin Grittner&lt;br /&gt;
|-&lt;br /&gt;
|klando || [[User:c2main|Cédric Villemain]]&lt;br /&gt;
|-&lt;br /&gt;
|larryrtx || Larry Rosenman&lt;br /&gt;
|-&lt;br /&gt;
|linuxpoet, postgresman || Joshua D. Drake&lt;br /&gt;
|-&lt;br /&gt;
|lluad || Steve Atkins&lt;br /&gt;
|-&lt;br /&gt;
|lsmith || Lukas Smith&lt;br /&gt;
|-&lt;br /&gt;
|macdice || Thomas Munro&lt;br /&gt;
|-&lt;br /&gt;
|mage_ || Julien Cigar&lt;br /&gt;
|-&lt;br /&gt;
|magnush || Magnus Hagander&lt;br /&gt;
|-&lt;br /&gt;
|maiku41 || Mike Blackwell&lt;br /&gt;
|-&lt;br /&gt;
|mappx || Katie McMillan&lt;br /&gt;
|-&lt;br /&gt;
|marco44 || Marc Cousin&lt;br /&gt;
|-&lt;br /&gt;
|markwkm || Mark Wong&lt;br /&gt;
|-&lt;br /&gt;
|mastermind || [[user:mastermind | Stefan Kaltenbrunner]]&lt;br /&gt;
|-&lt;br /&gt;
|mbalmer || [[user:mbalmer | Marc Balmer]]&lt;br /&gt;
|-&lt;br /&gt;
|merlin83 || Chua Khee Chin&lt;br /&gt;
|-&lt;br /&gt;
|merlinm || Merlin Moncure&lt;br /&gt;
|-&lt;br /&gt;
|metatrontech || Chris Travers&lt;br /&gt;
|-&lt;br /&gt;
|miracee || Susanne Ebrecht&lt;br /&gt;
|-&lt;br /&gt;
|Moosbert || Peter Eisentraut&lt;br /&gt;
|-&lt;br /&gt;
|Myon || [[user:Myon | Christoph Berg]]&lt;br /&gt;
|-&lt;br /&gt;
|neilc || Neil Conway&lt;br /&gt;
|-&lt;br /&gt;
|oicu || Andrew Dunstan&lt;br /&gt;
|-&lt;br /&gt;
|okbobcz || Pavel Stehule&lt;br /&gt;
|-&lt;br /&gt;
|patryk || Patryk Kordylewski&lt;br /&gt;
|-&lt;br /&gt;
|pasha_golub || [http://pgolub.wordpress.com/ Pavel Golub]&lt;br /&gt;
|-&lt;br /&gt;
|pg_docbot || [[IRCBotSyntax]]&lt;br /&gt;
|-&lt;br /&gt;
|pgSnake || Dave Page&lt;br /&gt;
|-&lt;br /&gt;
|PJMODOS || Petr Jel&amp;amp;iacute;nek&lt;br /&gt;
|-&lt;br /&gt;
|Possible || Robert Ivens&lt;br /&gt;
|-&lt;br /&gt;
|postwait || Theo Schlossnagle&lt;br /&gt;
|-&lt;br /&gt;
|prothid || R Brenton Strickler&lt;br /&gt;
|-&lt;br /&gt;
|psoo || Bernd Helmle&lt;br /&gt;
|-&lt;br /&gt;
|PSUdaemon || Phil Sorber&lt;br /&gt;
|-&lt;br /&gt;
|pyarra || Philip Yarra&lt;br /&gt;
|-&lt;br /&gt;
|raptelan || [[user:Cshobe|Casey Allen Shobe]]&lt;br /&gt;
|-&lt;br /&gt;
|RhodiumToad (formerly AndrewSN) || Andrew Gierth&lt;br /&gt;
|-&lt;br /&gt;
|rjuju || Julien Rouhaud&lt;br /&gt;
|-&lt;br /&gt;
|Robe || [[user:Robe | Michael Renner]]&lt;br /&gt;
|-&lt;br /&gt;
|rotellaro || Federico Campoli&lt;br /&gt;
|-&lt;br /&gt;
|russ960 || [[user:russ960|Russ Johnson]]&lt;br /&gt;
|-&lt;br /&gt;
|rz || Kirill Simonov&lt;br /&gt;
|-&lt;br /&gt;
|saper || Marcin Cieślak&lt;br /&gt;
|-&lt;br /&gt;
|SAS || Stéphane Schildknecht&lt;br /&gt;
|-&lt;br /&gt;
|schmiddy || Josh Kupershmidt&lt;br /&gt;
|-&lt;br /&gt;
|scrappy || Marc G. Fournier (has recently been used by someone pretending to be Marc &#039;for a joke&#039;)&lt;br /&gt;
|-&lt;br /&gt;
|sehrope || Sehrope Sarkuni&lt;br /&gt;
|-&lt;br /&gt;
|selenamarie || Selena Deckelmann&lt;br /&gt;
|-&lt;br /&gt;
|SkippyDigits || Sherri Kalm&lt;br /&gt;
|-&lt;br /&gt;
|Snow-Man || Stephen Frost&lt;br /&gt;
|-&lt;br /&gt;
|Spritz || Matteo Beccati&lt;br /&gt;
|-&lt;br /&gt;
|sternocera || Peter Geoghegan&lt;br /&gt;
|-&lt;br /&gt;
|StuckMojo, MojoWork || Jon Erdman&lt;br /&gt;
|-&lt;br /&gt;
|swm || Gavin Sherry&lt;br /&gt;
|-&lt;br /&gt;
|vy || Volkan YAZICI&lt;br /&gt;
|-&lt;br /&gt;
|wulczer || Jan Urbański&lt;br /&gt;
|-&lt;br /&gt;
|xaprb || Baron Schwartz&lt;br /&gt;
|-&lt;br /&gt;
|xocolatl, ififbetween || Vik Fearing&lt;br /&gt;
|-&lt;br /&gt;
|xzilla, xzi11a || [[User:Xzilla|Robert Treat]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Community]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=IRC2RWNames&amp;diff=34410</id>
		<title>IRC2RWNames</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=IRC2RWNames&amp;diff=34410"/>
		<updated>2019-11-27T10:59:25Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* List of IRC nicks with their respective real world names */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== List of IRC nicks with their respective real world names ===&lt;br /&gt;
&lt;br /&gt;
You can find many PostgreSQL users and developers chatting in [irc://irc.freenode.net/postgresql #postgresql on freenode].  Here&#039;s more information about some of the regulars there.  &#039;&#039;&#039;Note:&#039;&#039;&#039; people are on the list below only when they want to be.  Do not (re-)add anyone without their express permission.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Nickname || Real Name&lt;br /&gt;
|-&lt;br /&gt;
|ads || Andreas Scherbaum&lt;br /&gt;
|-&lt;br /&gt;
|agliodbs, aglio2 (freenode), jberkus (oftc) || Josh Berkus&lt;br /&gt;
|-&lt;br /&gt;
|ahammond || Andrew Hammond&lt;br /&gt;
|-&lt;br /&gt;
|akretschmer || Andreas Kretschmer&lt;br /&gt;
|-&lt;br /&gt;
|alvherre || Alvaro Herrera&lt;br /&gt;
|-&lt;br /&gt;
|andres || Andres Freund&lt;br /&gt;
|-&lt;br /&gt;
|Assid || Satish Alwani&lt;br /&gt;
|-&lt;br /&gt;
|aurynn || Aurynn Shaw&lt;br /&gt;
|-&lt;br /&gt;
|beaud76 || Philippe Beaudoin&lt;br /&gt;
|-&lt;br /&gt;
|BlueAidan/BlueAidan_work || [[user:davidblewett | David Blewett]]&lt;br /&gt;
|-&lt;br /&gt;
|bmomjian || Bruce Momjian&lt;br /&gt;
|-&lt;br /&gt;
|cbbrowne || Christopher Browne&lt;br /&gt;
|-&lt;br /&gt;
|cce || Clark C. Evans&lt;br /&gt;
|-&lt;br /&gt;
|cclavadetscher || Charles Clavadetscher&lt;br /&gt;
|-&lt;br /&gt;
|chicagoben || Benjamin Johnson&lt;br /&gt;
|-&lt;br /&gt;
|crab || Abhijit Menon-Sen&lt;br /&gt;
|-&lt;br /&gt;
|Crad || Gavin M. Roy&lt;br /&gt;
|-&lt;br /&gt;
|daamien ||  Damien Clochard&lt;br /&gt;
|-&lt;br /&gt;
|DarcyB || Darcy Buskermolen&lt;br /&gt;
|-&lt;br /&gt;
|darkixion || Thom Brown&lt;br /&gt;
|-&lt;br /&gt;
|davidfetter || David Fetter&lt;br /&gt;
|-&lt;br /&gt;
|dbb || Brian M Hamlin  / darkblue_b&lt;br /&gt;
|-&lt;br /&gt;
|dcolish || [http://www.unencrypted.org Dan Colish]&lt;br /&gt;
|-&lt;br /&gt;
|dcramer || Dave Cramer&lt;br /&gt;
|-&lt;br /&gt;
|DeciBull, TheCougar || Jim C. Nasby&lt;br /&gt;
|-&lt;br /&gt;
|dennisb || Dennis Bj&amp;amp;ouml;rklund&lt;br /&gt;
|-&lt;br /&gt;
|depesz || Hubert Lubaczewski&lt;br /&gt;
|-&lt;br /&gt;
|devrimgunduz || Devrim G&amp;amp;uuml;nd&amp;amp;uuml;z&lt;br /&gt;
|-&lt;br /&gt;
|digicon || [http://digicondev.blogspot.com Zach Conrad]&lt;br /&gt;
|-&lt;br /&gt;
|digitalknight || Atri Sharma&lt;br /&gt;
|-&lt;br /&gt;
|dim || [http://tapoueh.org Dimitri Fontaine]&lt;br /&gt;
|-&lt;br /&gt;
|direvus || Brendan Jurd&lt;br /&gt;
|-&lt;br /&gt;
|drbair || Ryan Bair&lt;br /&gt;
|-&lt;br /&gt;
|DrLou || Lou Picciano&lt;br /&gt;
|-&lt;br /&gt;
|duck_tape || Adi Alurkar&lt;br /&gt;
|-&lt;br /&gt;
|dvl || [http://langille.org/ Dan Langille]&lt;br /&gt;
|-&lt;br /&gt;
|eggyknap || Joshua Tolley&lt;br /&gt;
|-&lt;br /&gt;
|endpoint_david || David Christensen&lt;br /&gt;
|-&lt;br /&gt;
|eulerto || Euler Taveira&lt;br /&gt;
|-&lt;br /&gt;
|f3ew/devdas || Devdas Vasu Bhagat&lt;br /&gt;
|-&lt;br /&gt;
|feivel || Michael Meskes&lt;br /&gt;
|-&lt;br /&gt;
|frost242 || Thomas Reiss&lt;br /&gt;
|-&lt;br /&gt;
|elein || Elein Mustain&lt;br /&gt;
|-&lt;br /&gt;
|Gibheer || Stefan Radomski&lt;br /&gt;
|-&lt;br /&gt;
|gleu || Guillaume Lelarge&lt;br /&gt;
|-&lt;br /&gt;
|gorthx || [[User:Gabrielle|Gabrielle Roth]]&lt;br /&gt;
|-&lt;br /&gt;
|grzm || Michael Glaesemann&lt;br /&gt;
|-&lt;br /&gt;
|gsmet || Guillaume Smet&lt;br /&gt;
|-&lt;br /&gt;
|gregs1104 || Greg Smith&lt;br /&gt;
|-&lt;br /&gt;
|gurjeet || [[User:singh.gurjeet|Gurjeet Singh]]&lt;br /&gt;
|-&lt;br /&gt;
|G_SabinoMullane || Greg Sabino Mullane&lt;br /&gt;
|-&lt;br /&gt;
|HarrisonF || Harrison Fisk&lt;br /&gt;
|-&lt;br /&gt;
|ioguix || Jehan-Guillaume de Rorthais&lt;br /&gt;
|-&lt;br /&gt;
|indigo || Phil Frost&lt;br /&gt;
|-&lt;br /&gt;
|intgr || Marti Raudsepp&lt;br /&gt;
|-&lt;br /&gt;
|iwantchips || [https://payalsingh.me Payal Singh]&lt;br /&gt;
|-&lt;br /&gt;
|JanniCash || Jan Wieck&lt;br /&gt;
|-&lt;br /&gt;
|jconway || Joe Conway&lt;br /&gt;
|-&lt;br /&gt;
|jdavis, jdavis_ || Jeff Davis&lt;br /&gt;
|-&lt;br /&gt;
|jkatz05 || Jonathan S. Katz&lt;br /&gt;
|-&lt;br /&gt;
|johto || Marko Tiikkaja&lt;br /&gt;
|-&lt;br /&gt;
|jurka || Kris Jurka&lt;br /&gt;
|-&lt;br /&gt;
|justatheory || David Wheeler&lt;br /&gt;
|-&lt;br /&gt;
|jpa || Jean-Paul Argudo&lt;br /&gt;
|-&lt;br /&gt;
|jwp || James Pye&lt;br /&gt;
|-&lt;br /&gt;
|j_williams || Josh Williams&lt;br /&gt;
|-&lt;br /&gt;
|kandreas || Andreas Karlson&lt;br /&gt;
|-&lt;br /&gt;
|keithf4 || [http://www.keithf4.com Keith Fiske]&lt;br /&gt;
|-&lt;br /&gt;
|kgrittn || Kevin Grittner&lt;br /&gt;
|-&lt;br /&gt;
|klando || [[User:c2main|Cédric Villemain]]&lt;br /&gt;
|-&lt;br /&gt;
|larryrtx || Larry Rosenman&lt;br /&gt;
|-&lt;br /&gt;
|linuxpoet, postgresman || Joshua D. Drake&lt;br /&gt;
|-&lt;br /&gt;
|lluad || Steve Atkins&lt;br /&gt;
|-&lt;br /&gt;
|lsmith || Lukas Smith&lt;br /&gt;
|-&lt;br /&gt;
|macdice || Thomas Munro&lt;br /&gt;
|-&lt;br /&gt;
|mage_ || Julien Cigar&lt;br /&gt;
|-&lt;br /&gt;
|magnush || Magnus Hagander&lt;br /&gt;
|-&lt;br /&gt;
|maiku41 || Mike Blackwell&lt;br /&gt;
|-&lt;br /&gt;
|mappx || Katie McMillan&lt;br /&gt;
|-&lt;br /&gt;
|marco44 || Marc Cousin&lt;br /&gt;
|-&lt;br /&gt;
|markwkm || Mark Wong&lt;br /&gt;
|-&lt;br /&gt;
|mastermind || [[user:mastermind | Stefan Kaltenbrunner]]&lt;br /&gt;
|-&lt;br /&gt;
|mbalmer || [[user:mbalmer | Marc Balmer]]&lt;br /&gt;
|-&lt;br /&gt;
|merlin83 || Chua Khee Chin&lt;br /&gt;
|-&lt;br /&gt;
|merlinm || Merlin Moncure&lt;br /&gt;
|-&lt;br /&gt;
|metatrontech || Chris Travers&lt;br /&gt;
|-&lt;br /&gt;
|miracee || Susanne Ebrecht&lt;br /&gt;
|-&lt;br /&gt;
|Moosbert || Peter Eisentraut&lt;br /&gt;
|-&lt;br /&gt;
|Myon || [[user:Myon | Christoph Berg]]&lt;br /&gt;
|-&lt;br /&gt;
|neilc || Neil Conway&lt;br /&gt;
|-&lt;br /&gt;
|oicu || Andrew Dunstan&lt;br /&gt;
|-&lt;br /&gt;
|okbobcz || Pavel Stehule&lt;br /&gt;
|-&lt;br /&gt;
|patryk || Patryk Kordylewski&lt;br /&gt;
|-&lt;br /&gt;
|pasha_golub || [http://pgolub.wordpress.com/ Pavel Golub]&lt;br /&gt;
|-&lt;br /&gt;
|pg_docbot || [[IRCBotSyntax]]&lt;br /&gt;
|-&lt;br /&gt;
|pgSnake || Dave Page&lt;br /&gt;
|-&lt;br /&gt;
|PJMODOS || Petr Jel&amp;amp;iacute;nek&lt;br /&gt;
|-&lt;br /&gt;
|Possible || Robert Ivens&lt;br /&gt;
|-&lt;br /&gt;
|postwait || Theo Schlossnagle&lt;br /&gt;
|-&lt;br /&gt;
|prothid || R Brenton Strickler&lt;br /&gt;
|-&lt;br /&gt;
|psoo || Bernd Helmle&lt;br /&gt;
|-&lt;br /&gt;
|PSUdaemon || Phil Sorber&lt;br /&gt;
|-&lt;br /&gt;
|pyarra || Philip Yarra&lt;br /&gt;
|-&lt;br /&gt;
|raptelan || [[user:Cshobe|Casey Allen Shobe]]&lt;br /&gt;
|-&lt;br /&gt;
|RhodiumToad (formerly AndrewSN) || Andrew Gierth&lt;br /&gt;
|-&lt;br /&gt;
|rjuju || Julien Rouhaud&lt;br /&gt;
|-&lt;br /&gt;
|Robe || [[user:Robe | Michael Renner]]&lt;br /&gt;
|-&lt;br /&gt;
|rotellaro || Federico Campoli&lt;br /&gt;
|-&lt;br /&gt;
|russ960 || [[user:russ960|Russ Johnson]]&lt;br /&gt;
|-&lt;br /&gt;
|rz || Kirill Simonov&lt;br /&gt;
|-&lt;br /&gt;
|saper || Marcin Cieślak&lt;br /&gt;
|-&lt;br /&gt;
|SAS || Stéphane Schildknecht&lt;br /&gt;
|-&lt;br /&gt;
|schmiddy || Josh Kupershmidt&lt;br /&gt;
|-&lt;br /&gt;
|scrappy || Marc G. Fournier (has recently been used by someone pretending to be Marc &#039;for a joke&#039;&lt;br /&gt;
|-&lt;br /&gt;
|sehrope || Sehrope Sarkuni&lt;br /&gt;
|-&lt;br /&gt;
|selenamarie || Selena Deckelmann&lt;br /&gt;
|-&lt;br /&gt;
|SkippyDigits || Sherri Kalm&lt;br /&gt;
|-&lt;br /&gt;
|Snow-Man || Stephen Frost&lt;br /&gt;
|-&lt;br /&gt;
|Spritz || Matteo Beccati&lt;br /&gt;
|-&lt;br /&gt;
|sternocera || Peter Geoghegan&lt;br /&gt;
|-&lt;br /&gt;
|StuckMojo, MojoWork || Jon Erdman&lt;br /&gt;
|-&lt;br /&gt;
|swm || Gavin Sherry&lt;br /&gt;
|-&lt;br /&gt;
|vy || Volkan YAZICI&lt;br /&gt;
|-&lt;br /&gt;
|wulczer || Jan Urbański&lt;br /&gt;
|-&lt;br /&gt;
|xaprb || Baron Schwartz&lt;br /&gt;
|-&lt;br /&gt;
|xocolatl, ififbetween || Vik Fearing&lt;br /&gt;
|-&lt;br /&gt;
|xzilla, xzi11a || [[User:Xzilla|Robert Treat]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Community]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=FOSDEM/PGDay_2020_Developer_Meeting&amp;diff=34404</id>
		<title>FOSDEM/PGDay 2020 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=FOSDEM/PGDay_2020_Developer_Meeting&amp;diff=34404"/>
		<updated>2019-11-25T11:14:41Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* Attendees */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A meeting for PostgreSQL developers will be held in conjunction with the PostgreSQL Europe FOSDEM Devroom&lt;br /&gt;
and FOSDEM/PGDay 2020 events in Brussels, Belgium. The meeting is planned for January 30. In order to keep the meeting focused, productive, and with a high level of interaction, the meeting is invite-only. Due to the large developer community, we cannot invite every active contributor. If you feel that you, or someone else, should&#039;ve been invited then please contact [mailto:daniel@yesql.se Daniel Gustafsson].&lt;br /&gt;
&lt;br /&gt;
This is a Community event, organized and financed by PostgreSQL Europe.&lt;br /&gt;
&lt;br /&gt;
== Time and Location ==&lt;br /&gt;
The meeting will be held at the [https://www3.hilton.com/en/hotels/brussels-capital-reg/hilton-brussels-grand-place-BRUGRHI/index.html Hilton Brussels Grand Place Hotel], which is the venue where [https://2020.fosdempgday.org/ FOSDEM PGDay 2020] is arranged the day after on January 31. The meeting starts at 9AM and is scheduled to end at 5PM. Coffee, tea and snacks will be provided during the day, as well as lunch.&lt;br /&gt;
&lt;br /&gt;
== Attendees ==&lt;br /&gt;
The following hackers have RSVP&#039;ed to the meeting and will be attending:&lt;br /&gt;
* Daniel Gustafsson&lt;br /&gt;
* Joe Conway&lt;br /&gt;
* Alexander Korotkov&lt;br /&gt;
* Julien Rouhaud&lt;br /&gt;
* Magnus Hagander&lt;br /&gt;
* Dave Page&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following hackers have been invited but are unable to attend:&lt;br /&gt;
* Tom Lane&lt;br /&gt;
&lt;br /&gt;
== Suggested Topics ==&lt;br /&gt;
Please add topics for discussion to the list:&lt;br /&gt;
* CI build feedback/information directly in CF app (Daniel)&lt;br /&gt;
* Commitfest triage&lt;br /&gt;
&lt;br /&gt;
== Agenda ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Item&lt;br /&gt;
!Presenter&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|09:00 - 09:10&lt;br /&gt;
|Welcome and introductions&lt;br /&gt;
|Daniel&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:10 - 09:20&lt;br /&gt;
|TBD&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:20 - 09:40&lt;br /&gt;
|TBD&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:40 - 10:00&lt;br /&gt;
|TBD&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|10:00 - 10:20&lt;br /&gt;
|TBD&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|10:20 - 10:30&lt;br /&gt;
|TBD&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|10:30 - 11:00&lt;br /&gt;
|Coffee break&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:00 - 11:15&lt;br /&gt;
|TBD&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:15 - 12:30&lt;br /&gt;
|TBD&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|12:30 - 13:30&lt;br /&gt;
|Lunch&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|13:30 - 15:00&lt;br /&gt;
|Commitfest Triage&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|15:00 - 15:30&lt;br /&gt;
|Tea break&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|15:30 - 16:45&lt;br /&gt;
|Commitfest Triage&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|16:45 - 17:00&lt;br /&gt;
|Any other business, plans for next year&lt;br /&gt;
|Daniel&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|17:00&lt;br /&gt;
|Finish&lt;br /&gt;
|&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PGFGMembers&amp;diff=34275</id>
		<title>PGFGMembers</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PGFGMembers&amp;diff=34275"/>
		<updated>2019-10-29T13:52:25Z</updated>

		<summary type="html">&lt;p&gt;Dpage: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Active PGFG Members ==&lt;br /&gt;
* Andreas Scherbaum 	Germany 	Member&lt;br /&gt;
* Christopher Browne 	Canada 	Member&lt;br /&gt;
* Dave Cramer 	Canada 	Backup Liaison&lt;br /&gt;
* Dave Page 	U.K. 	Member&lt;br /&gt;
* David Fetter 	U.S.A. 	Member&lt;br /&gt;
* Devrim Gunduz 	Turkey 	Member&lt;br /&gt;
* Greg Sabino Mullane 	U.S.A. 	Member&lt;br /&gt;
* Hans-Jürgen Schönig 	Germany 	Member&lt;br /&gt;
* Joe Conway 	U.S.A. 	Member&lt;br /&gt;
* Jonathan Katz 	U.S.A. 	Member&lt;br /&gt;
* Josh Berkus 	U.S.A. 	Member&lt;br /&gt;
* Larry Rosenman 	U.S.A. 	Member&lt;br /&gt;
* Marc Fournier 	Canada 	Member&lt;br /&gt;
* Michael Meskes 	Germany 	Member&lt;br /&gt;
* Oleg Bartunov 	Russian Fed. 	Member&lt;br /&gt;
* Peter Eisentraut 	Germany 	Member&lt;br /&gt;
* Robert Treat 	U.S.A 	Liaison&lt;br /&gt;
&lt;br /&gt;
== Past PGFG Members ==&lt;br /&gt;
* A. Elein Mustain  	U.S.A.  	Member&lt;br /&gt;
* Andrew Sullivan 	Canada 	Member&lt;br /&gt;
* Gavin M. Roy 	U.S.A. 	Member&lt;br /&gt;
* Lamar Owen 	U.S.A. 	Member&lt;br /&gt;
* Rod Taylor 	Canada 	Member&lt;br /&gt;
* Tatsuo Ishii 	Japan 	Member&lt;br /&gt;
* Joshua Drake 	U.S.A. 	Member&lt;br /&gt;
&lt;br /&gt;
[[Category:PGFG]]&lt;br /&gt;
[[Category:Funds]]&lt;br /&gt;
[[Category:Donations]]&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33511</id>
		<title>PgCon 2019 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33511"/>
		<updated>2019-05-24T15:05:56Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* RSVPs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A meeting of the interested PostgreSQL developers is being planned for Tuesday 28 May, 2019 at the University of Ottawa, prior to pgCon 2019. In order to keep the numbers manageable, this meeting is by &#039;&#039;&#039;invitation only&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The invitation list for the meeting has changed this year to include representatives from various project sub-teams, for example, packagers, the release team, Code of Conduct committee and more.&lt;br /&gt;
&lt;br /&gt;
As at last years event, an Unconference will be held on Wednesday for in-depth discussion of technical topics.&lt;br /&gt;
&lt;br /&gt;
This is a PostgreSQL Community event.&lt;br /&gt;
&lt;br /&gt;
== Meeting Goals ==&lt;br /&gt;
&lt;br /&gt;
* Define the schedule for the 13.0 release cycle&lt;br /&gt;
* Address any proposed timing, policy, or procedure issues&lt;br /&gt;
* Receive updates from project sub-teams on their activities and discuss any resulting issues or concerns.&lt;br /&gt;
* Address any proposed [http://en.wikipedia.org/wiki/Wicked_problem Wicked problems]&lt;br /&gt;
&lt;br /&gt;
== Time &amp;amp; Location ==&lt;br /&gt;
&lt;br /&gt;
The meeting will be:&lt;br /&gt;
&lt;br /&gt;
* 9:00AM to 12PM&lt;br /&gt;
* DMS 3105&lt;br /&gt;
* University of Ottawa.&lt;br /&gt;
&lt;br /&gt;
Lunch will be served after the meeting.&lt;br /&gt;
&lt;br /&gt;
== RSVPs ==&lt;br /&gt;
&lt;br /&gt;
The following people have RSVPed to the meeting (in alphabetical order, by surname). Note that we can accommodate a &#039;&#039;&#039;maximum of 30&#039;&#039;&#039;!&lt;br /&gt;
&lt;br /&gt;
# Joe Conway&lt;br /&gt;
# Jeff Davis&lt;br /&gt;
# Andrew Dunstan&lt;br /&gt;
# Peter Eisentraut&lt;br /&gt;
# Andres Freund&lt;br /&gt;
# Stephen Frost&lt;br /&gt;
# Peter Geoghegan&lt;br /&gt;
# Robert Haas&lt;br /&gt;
# Magnus Hagander&lt;br /&gt;
# Stacey Haysler (present for CoC report and discussion only)&lt;br /&gt;
# Álvaro Herrera&lt;br /&gt;
# Amit Kapila&lt;br /&gt;
# Jonathan Katz&lt;br /&gt;
# Haribabu Kommi&lt;br /&gt;
# Alexander Korotkov&lt;br /&gt;
# Tom Lane&lt;br /&gt;
# Heikki Linnakangas&lt;br /&gt;
# Noah Misch&lt;br /&gt;
# Bruce Momjian&lt;br /&gt;
# Thomas Munro&lt;br /&gt;
# John Naylor&lt;br /&gt;
# Dave Page&lt;br /&gt;
# Michael Paquier&lt;br /&gt;
# David Rowley&lt;br /&gt;
# Masahiko Sawada&lt;br /&gt;
# David Steele&lt;br /&gt;
# Robert Treat&lt;br /&gt;
# Tomas Vondra&lt;br /&gt;
&lt;br /&gt;
The following people will not be in Ottawa, and do not plan to attend:&lt;br /&gt;
&lt;br /&gt;
* Christoph Berg&lt;br /&gt;
* Vik Fearing&lt;br /&gt;
* Devrim Gunduz&lt;br /&gt;
* Andreas Scherbaum&lt;br /&gt;
* Sarah Conway Schnurr&lt;br /&gt;
* Ilya Kosmodemiansky&lt;br /&gt;
* Amit Langote&lt;br /&gt;
&lt;br /&gt;
== Agenda Items ==&lt;br /&gt;
&lt;br /&gt;
* 13.0 release and commitfest schedule (Dave)&lt;br /&gt;
* Contributor Recognition (Andres, happy to share / pass, but should be discussed)&lt;br /&gt;
** [https://www.postgresql.org/community/contributors/ contributors] page update - how well is it working?&lt;br /&gt;
** should the developer meeting serve as recognition? &lt;br /&gt;
* The Evolving Developer Meeting: Goals &amp;amp; What We Want to Accomplish by the end of it? (Jonathan, happy to share)&lt;br /&gt;
* SQL standard update (Peter E.)&lt;br /&gt;
* Locale apocalypse (Peter E.)&lt;br /&gt;
* Criteria for major version release notes (Peter Geoghegan)&lt;br /&gt;
* Release notes depth level (Álvaro Herrera, happy to share)&lt;br /&gt;
* &#039;&#039;Please add suggestions for agenda items here. (with your name)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Item&lt;br /&gt;
!Presenter&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|09:00 - 09:10&lt;br /&gt;
|Welcome and introductions&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|09:10 - 09:20&lt;br /&gt;
|Code of Conduct report and discussion&lt;br /&gt;
|Stacey Haysler&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:20 - 09:25&lt;br /&gt;
|Core team/PGCAC update&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:25 - 09:30&lt;br /&gt;
|Infrastructure update&lt;br /&gt;
|Stephen Frost&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:30 - 09:35&lt;br /&gt;
|Web &amp;amp; Advocacy update&lt;br /&gt;
|Jonathan Katz&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:35 - 09:40&lt;br /&gt;
|Funds &amp;amp; Sponsors update&lt;br /&gt;
|Robert Treat/Joe Conway&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:40 - 09:50&lt;br /&gt;
|13.0 release and commitfest schedule&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:50 - 10:10&lt;br /&gt;
|Contributor Recognition: Contributors page update; how well is it working? Should the Developer Meeting serve as recognition?&lt;br /&gt;
|Andres Freund&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|10:10 - 10:30&lt;br /&gt;
|The Evolving Developer Meeting: Goals &amp;amp; What We Want to Accomplish by the end of it?&lt;br /&gt;
|Jonathan Katz, Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|10:30 - 11:00&lt;br /&gt;
|Coffee break&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:00 - 11:10&lt;br /&gt;
|SQL standard update&lt;br /&gt;
|Peter Eisentraut&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:10 - 11:20&lt;br /&gt;
|Locale apocalypse&lt;br /&gt;
|Peter Eisentraut&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:20 - 11:35&lt;br /&gt;
|Commitfest Management&lt;br /&gt;
|David Steele&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:35 - 11:50&lt;br /&gt;
|Release notes: Criteria for major version release notes and depth level.&lt;br /&gt;
|Peter Geoghegan, Álvaro Herrera&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:50 - 12:00&lt;br /&gt;
|Any other business&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|12:00&lt;br /&gt;
|Lunch&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: This timetable is a rough guide only. Items will start as soon as the previous discussion is complete (breaks will not move however). Any remaining time before lunch may be used for Commitfest item triage or other activities.&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33510</id>
		<title>PgCon 2019 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33510"/>
		<updated>2019-05-24T15:05:38Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* RSVPs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A meeting of the interested PostgreSQL developers is being planned for Tuesday 28 May, 2019 at the University of Ottawa, prior to pgCon 2019. In order to keep the numbers manageable, this meeting is by &#039;&#039;&#039;invitation only&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The invitation list for the meeting has changed this year to include representatives from various project sub-teams, for example, packagers, the release team, Code of Conduct committee and more.&lt;br /&gt;
&lt;br /&gt;
As at last years event, an Unconference will be held on Wednesday for in-depth discussion of technical topics.&lt;br /&gt;
&lt;br /&gt;
This is a PostgreSQL Community event.&lt;br /&gt;
&lt;br /&gt;
== Meeting Goals ==&lt;br /&gt;
&lt;br /&gt;
* Define the schedule for the 13.0 release cycle&lt;br /&gt;
* Address any proposed timing, policy, or procedure issues&lt;br /&gt;
* Receive updates from project sub-teams on their activities and discuss any resulting issues or concerns.&lt;br /&gt;
* Address any proposed [http://en.wikipedia.org/wiki/Wicked_problem Wicked problems]&lt;br /&gt;
&lt;br /&gt;
== Time &amp;amp; Location ==&lt;br /&gt;
&lt;br /&gt;
The meeting will be:&lt;br /&gt;
&lt;br /&gt;
* 9:00AM to 12PM&lt;br /&gt;
* DMS 3105&lt;br /&gt;
* University of Ottawa.&lt;br /&gt;
&lt;br /&gt;
Lunch will be served after the meeting.&lt;br /&gt;
&lt;br /&gt;
== RSVPs ==&lt;br /&gt;
&lt;br /&gt;
The following people have RSVPed to the meeting (in alphabetical order, by surname). Note that we can accommodate a &#039;&#039;&#039;maximum of 30&#039;&#039;&#039;!&lt;br /&gt;
&lt;br /&gt;
# Joe Conway&lt;br /&gt;
# Jeff Davis&lt;br /&gt;
# Andrew Dunstan&lt;br /&gt;
# Peter Eisentraut&lt;br /&gt;
# Andres Freund&lt;br /&gt;
# Stephen Frost&lt;br /&gt;
# Peter Geoghegan&lt;br /&gt;
# Robert Haas&lt;br /&gt;
# Magnus Hagander&lt;br /&gt;
# Stacey Haysler (present for CoC report and discussion only)&lt;br /&gt;
# Álvaro Herrera&lt;br /&gt;
# Amit Kapila&lt;br /&gt;
# Jonathan Katz&lt;br /&gt;
# Haribabu Kommi&lt;br /&gt;
# Alexander Korotkov&lt;br /&gt;
# Tom Lane&lt;br /&gt;
# Heikki Linnakangas&lt;br /&gt;
# Noah Misch&lt;br /&gt;
# Bruce Momjian&lt;br /&gt;
# Thomas Munro&lt;br /&gt;
# John Naylor&lt;br /&gt;
# Dave Page&lt;br /&gt;
# Michael Paquier&lt;br /&gt;
# David Rowley&lt;br /&gt;
# Masahiko Sawada&lt;br /&gt;
# David Steele&lt;br /&gt;
# Robert Treat&lt;br /&gt;
# Tomas Vondra&lt;br /&gt;
&lt;br /&gt;
The following people will not be in Ottawa, and do not plan to attend:&lt;br /&gt;
&lt;br /&gt;
* Christoph Berg&lt;br /&gt;
* Vik Fearing&lt;br /&gt;
* Andreas Scherbaum&lt;br /&gt;
* Sarah Conway Schnurr&lt;br /&gt;
* Ilya Kosmodemiansky&lt;br /&gt;
* Amit Langote&lt;br /&gt;
&lt;br /&gt;
== Agenda Items ==&lt;br /&gt;
&lt;br /&gt;
* 13.0 release and commitfest schedule (Dave)&lt;br /&gt;
* Contributor Recognition (Andres, happy to share / pass, but should be discussed)&lt;br /&gt;
** [https://www.postgresql.org/community/contributors/ contributors] page update - how well is it working?&lt;br /&gt;
** should the developer meeting serve as recognition? &lt;br /&gt;
* The Evolving Developer Meeting: Goals &amp;amp; What We Want to Accomplish by the end of it? (Jonathan, happy to share)&lt;br /&gt;
* SQL standard update (Peter E.)&lt;br /&gt;
* Locale apocalypse (Peter E.)&lt;br /&gt;
* Criteria for major version release notes (Peter Geoghegan)&lt;br /&gt;
* Release notes depth level (Álvaro Herrera, happy to share)&lt;br /&gt;
* &#039;&#039;Please add suggestions for agenda items here. (with your name)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Item&lt;br /&gt;
!Presenter&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|09:00 - 09:10&lt;br /&gt;
|Welcome and introductions&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|09:10 - 09:20&lt;br /&gt;
|Code of Conduct report and discussion&lt;br /&gt;
|Stacey Haysler&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:20 - 09:25&lt;br /&gt;
|Core team/PGCAC update&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:25 - 09:30&lt;br /&gt;
|Infrastructure update&lt;br /&gt;
|Stephen Frost&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:30 - 09:35&lt;br /&gt;
|Web &amp;amp; Advocacy update&lt;br /&gt;
|Jonathan Katz&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:35 - 09:40&lt;br /&gt;
|Funds &amp;amp; Sponsors update&lt;br /&gt;
|Robert Treat/Joe Conway&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:40 - 09:50&lt;br /&gt;
|13.0 release and commitfest schedule&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:50 - 10:10&lt;br /&gt;
|Contributor Recognition: Contributors page update; how well is it working? Should the Developer Meeting serve as recognition?&lt;br /&gt;
|Andres Freund&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|10:10 - 10:30&lt;br /&gt;
|The Evolving Developer Meeting: Goals &amp;amp; What We Want to Accomplish by the end of it?&lt;br /&gt;
|Jonathan Katz, Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|10:30 - 11:00&lt;br /&gt;
|Coffee break&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:00 - 11:10&lt;br /&gt;
|SQL standard update&lt;br /&gt;
|Peter Eisentraut&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:10 - 11:20&lt;br /&gt;
|Locale apocalypse&lt;br /&gt;
|Peter Eisentraut&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:20 - 11:35&lt;br /&gt;
|Commitfest Management&lt;br /&gt;
|David Steele&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:35 - 11:50&lt;br /&gt;
|Release notes: Criteria for major version release notes and depth level.&lt;br /&gt;
|Peter Geoghegan, Álvaro Herrera&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:50 - 12:00&lt;br /&gt;
|Any other business&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|12:00&lt;br /&gt;
|Lunch&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: This timetable is a rough guide only. Items will start as soon as the previous discussion is complete (breaks will not move however). Any remaining time before lunch may be used for Commitfest item triage or other activities.&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33509</id>
		<title>PgCon 2019 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33509"/>
		<updated>2019-05-24T13:17:08Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* Agenda */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A meeting of the interested PostgreSQL developers is being planned for Tuesday 28 May, 2019 at the University of Ottawa, prior to pgCon 2019. In order to keep the numbers manageable, this meeting is by &#039;&#039;&#039;invitation only&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The invitation list for the meeting has changed this year to include representatives from various project sub-teams, for example, packagers, the release team, Code of Conduct committee and more.&lt;br /&gt;
&lt;br /&gt;
As at last years event, an Unconference will be held on Wednesday for in-depth discussion of technical topics.&lt;br /&gt;
&lt;br /&gt;
This is a PostgreSQL Community event.&lt;br /&gt;
&lt;br /&gt;
== Meeting Goals ==&lt;br /&gt;
&lt;br /&gt;
* Define the schedule for the 13.0 release cycle&lt;br /&gt;
* Address any proposed timing, policy, or procedure issues&lt;br /&gt;
* Receive updates from project sub-teams on their activities and discuss any resulting issues or concerns.&lt;br /&gt;
* Address any proposed [http://en.wikipedia.org/wiki/Wicked_problem Wicked problems]&lt;br /&gt;
&lt;br /&gt;
== Time &amp;amp; Location ==&lt;br /&gt;
&lt;br /&gt;
The meeting will be:&lt;br /&gt;
&lt;br /&gt;
* 9:00AM to 12PM&lt;br /&gt;
* DMS 3105&lt;br /&gt;
* University of Ottawa.&lt;br /&gt;
&lt;br /&gt;
Lunch will be served after the meeting.&lt;br /&gt;
&lt;br /&gt;
== RSVPs ==&lt;br /&gt;
&lt;br /&gt;
The following people have RSVPed to the meeting (in alphabetical order, by surname). Note that we can accommodate a &#039;&#039;&#039;maximum of 30&#039;&#039;&#039;!&lt;br /&gt;
&lt;br /&gt;
# Joe Conway&lt;br /&gt;
# Jeff Davis&lt;br /&gt;
# Andrew Dunstan&lt;br /&gt;
# Peter Eisentraut&lt;br /&gt;
# Andres Freund&lt;br /&gt;
# Stephen Frost&lt;br /&gt;
# Peter Geoghegan&lt;br /&gt;
# Devrim Gündüz&lt;br /&gt;
# Robert Haas&lt;br /&gt;
# Magnus Hagander&lt;br /&gt;
# Stacey Haysler (present for CoC report and discussion only)&lt;br /&gt;
# Álvaro Herrera&lt;br /&gt;
# Amit Kapila&lt;br /&gt;
# Jonathan Katz&lt;br /&gt;
# Haribabu Kommi&lt;br /&gt;
# Alexander Korotkov&lt;br /&gt;
# Tom Lane&lt;br /&gt;
# Heikki Linnakangas&lt;br /&gt;
# Noah Misch&lt;br /&gt;
# Bruce Momjian&lt;br /&gt;
# Thomas Munro&lt;br /&gt;
# John Naylor&lt;br /&gt;
# Dave Page&lt;br /&gt;
# Michael Paquier&lt;br /&gt;
# David Rowley&lt;br /&gt;
# Masahiko Sawada&lt;br /&gt;
# David Steele&lt;br /&gt;
# Robert Treat&lt;br /&gt;
# Tomas Vondra&lt;br /&gt;
&lt;br /&gt;
The following people will not be in Ottawa, and do not plan to attend:&lt;br /&gt;
&lt;br /&gt;
* Christoph Berg&lt;br /&gt;
* Vik Fearing&lt;br /&gt;
* Andreas Scherbaum&lt;br /&gt;
* Sarah Conway Schnurr&lt;br /&gt;
* Ilya Kosmodemiansky&lt;br /&gt;
* Amit Langote&lt;br /&gt;
&lt;br /&gt;
== Agenda Items ==&lt;br /&gt;
&lt;br /&gt;
* 13.0 release and commitfest schedule (Dave)&lt;br /&gt;
* Contributor Recognition (Andres, happy to share / pass, but should be discussed)&lt;br /&gt;
** [https://www.postgresql.org/community/contributors/ contributors] page update - how well is it working?&lt;br /&gt;
** should the developer meeting serve as recognition? &lt;br /&gt;
* The Evolving Developer Meeting: Goals &amp;amp; What We Want to Accomplish by the end of it? (Jonathan, happy to share)&lt;br /&gt;
* SQL standard update (Peter E.)&lt;br /&gt;
* Locale apocalypse (Peter E.)&lt;br /&gt;
* Criteria for major version release notes (Peter Geoghegan)&lt;br /&gt;
* Release notes depth level (Álvaro Herrera, happy to share)&lt;br /&gt;
* &#039;&#039;Please add suggestions for agenda items here. (with your name)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Item&lt;br /&gt;
!Presenter&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|09:00 - 09:10&lt;br /&gt;
|Welcome and introductions&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|09:10 - 09:20&lt;br /&gt;
|Code of Conduct report and discussion&lt;br /&gt;
|Stacey Haysler&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:20 - 09:25&lt;br /&gt;
|Core team/PGCAC update&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:25 - 09:30&lt;br /&gt;
|Infrastructure update&lt;br /&gt;
|Stephen Frost&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:30 - 09:35&lt;br /&gt;
|Web &amp;amp; Advocacy update&lt;br /&gt;
|Jonathan Katz&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:35 - 09:40&lt;br /&gt;
|Funds &amp;amp; Sponsors update&lt;br /&gt;
|Robert Treat/Joe Conway&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:40 - 09:50&lt;br /&gt;
|13.0 release and commitfest schedule&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:50 - 10:10&lt;br /&gt;
|Contributor Recognition: Contributors page update; how well is it working? Should the Developer Meeting serve as recognition?&lt;br /&gt;
|Andres Freund&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|10:10 - 10:30&lt;br /&gt;
|The Evolving Developer Meeting: Goals &amp;amp; What We Want to Accomplish by the end of it?&lt;br /&gt;
|Jonathan Katz, Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|10:30 - 11:00&lt;br /&gt;
|Coffee break&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:00 - 11:10&lt;br /&gt;
|SQL standard update&lt;br /&gt;
|Peter Eisentraut&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:10 - 11:20&lt;br /&gt;
|Locale apocalypse&lt;br /&gt;
|Peter Eisentraut&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:20 - 11:35&lt;br /&gt;
|Commitfest Management&lt;br /&gt;
|David Steele&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:35 - 11:50&lt;br /&gt;
|Release notes: Criteria for major version release notes and depth level.&lt;br /&gt;
|Peter Geoghegan, Álvaro Herrera&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:50 - 12:00&lt;br /&gt;
|Any other business&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|12:00&lt;br /&gt;
|Lunch&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: This timetable is a rough guide only. Items will start as soon as the previous discussion is complete (breaks will not move however). Any remaining time before lunch may be used for Commitfest item triage or other activities.&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33508</id>
		<title>PgCon 2019 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33508"/>
		<updated>2019-05-24T12:53:05Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* Agenda */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A meeting of the interested PostgreSQL developers is being planned for Tuesday 28 May, 2019 at the University of Ottawa, prior to pgCon 2019. In order to keep the numbers manageable, this meeting is by &#039;&#039;&#039;invitation only&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The invitation list for the meeting has changed this year to include representatives from various project sub-teams, for example, packagers, the release team, Code of Conduct committee and more.&lt;br /&gt;
&lt;br /&gt;
As at last years event, an Unconference will be held on Wednesday for in-depth discussion of technical topics.&lt;br /&gt;
&lt;br /&gt;
This is a PostgreSQL Community event.&lt;br /&gt;
&lt;br /&gt;
== Meeting Goals ==&lt;br /&gt;
&lt;br /&gt;
* Define the schedule for the 13.0 release cycle&lt;br /&gt;
* Address any proposed timing, policy, or procedure issues&lt;br /&gt;
* Receive updates from project sub-teams on their activities and discuss any resulting issues or concerns.&lt;br /&gt;
* Address any proposed [http://en.wikipedia.org/wiki/Wicked_problem Wicked problems]&lt;br /&gt;
&lt;br /&gt;
== Time &amp;amp; Location ==&lt;br /&gt;
&lt;br /&gt;
The meeting will be:&lt;br /&gt;
&lt;br /&gt;
* 9:00AM to 12PM&lt;br /&gt;
* DMS 3105&lt;br /&gt;
* University of Ottawa.&lt;br /&gt;
&lt;br /&gt;
Lunch will be served after the meeting.&lt;br /&gt;
&lt;br /&gt;
== RSVPs ==&lt;br /&gt;
&lt;br /&gt;
The following people have RSVPed to the meeting (in alphabetical order, by surname). Note that we can accommodate a &#039;&#039;&#039;maximum of 30&#039;&#039;&#039;!&lt;br /&gt;
&lt;br /&gt;
# Joe Conway&lt;br /&gt;
# Jeff Davis&lt;br /&gt;
# Andrew Dunstan&lt;br /&gt;
# Peter Eisentraut&lt;br /&gt;
# Andres Freund&lt;br /&gt;
# Stephen Frost&lt;br /&gt;
# Peter Geoghegan&lt;br /&gt;
# Devrim Gündüz&lt;br /&gt;
# Robert Haas&lt;br /&gt;
# Magnus Hagander&lt;br /&gt;
# Stacey Haysler (present for CoC report and discussion only)&lt;br /&gt;
# Álvaro Herrera&lt;br /&gt;
# Amit Kapila&lt;br /&gt;
# Jonathan Katz&lt;br /&gt;
# Haribabu Kommi&lt;br /&gt;
# Alexander Korotkov&lt;br /&gt;
# Tom Lane&lt;br /&gt;
# Heikki Linnakangas&lt;br /&gt;
# Noah Misch&lt;br /&gt;
# Bruce Momjian&lt;br /&gt;
# Thomas Munro&lt;br /&gt;
# John Naylor&lt;br /&gt;
# Dave Page&lt;br /&gt;
# Michael Paquier&lt;br /&gt;
# David Rowley&lt;br /&gt;
# Masahiko Sawada&lt;br /&gt;
# David Steele&lt;br /&gt;
# Robert Treat&lt;br /&gt;
# Tomas Vondra&lt;br /&gt;
&lt;br /&gt;
The following people will not be in Ottawa, and do not plan to attend:&lt;br /&gt;
&lt;br /&gt;
* Christoph Berg&lt;br /&gt;
* Vik Fearing&lt;br /&gt;
* Andreas Scherbaum&lt;br /&gt;
* Sarah Conway Schnurr&lt;br /&gt;
* Ilya Kosmodemiansky&lt;br /&gt;
* Amit Langote&lt;br /&gt;
&lt;br /&gt;
== Agenda Items ==&lt;br /&gt;
&lt;br /&gt;
* 13.0 release and commitfest schedule (Dave)&lt;br /&gt;
* Contributor Recognition (Andres, happy to share / pass, but should be discussed)&lt;br /&gt;
** [https://www.postgresql.org/community/contributors/ contributors] page update - how well is it working?&lt;br /&gt;
** should the developer meeting serve as recognition? &lt;br /&gt;
* The Evolving Developer Meeting: Goals &amp;amp; What We Want to Accomplish by the end of it? (Jonathan, happy to share)&lt;br /&gt;
* SQL standard update (Peter E.)&lt;br /&gt;
* Locale apocalypse (Peter E.)&lt;br /&gt;
* Criteria for major version release notes (Peter Geoghegan)&lt;br /&gt;
* Release notes depth level (Álvaro Herrera, happy to share)&lt;br /&gt;
* &#039;&#039;Please add suggestions for agenda items here. (with your name)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Item&lt;br /&gt;
!Presenter&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|09:00 - 09:10&lt;br /&gt;
|Welcome and introductions&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|09:10 - 09:20&lt;br /&gt;
|Code of Conduct report and discussion&lt;br /&gt;
|Stacey Haysler&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:20 - 09:25&lt;br /&gt;
|Core team/PGCAC update&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:25 - 09:30&lt;br /&gt;
|Infrastructure update&lt;br /&gt;
|Stephen Frost&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:30 - 09:35&lt;br /&gt;
|Web &amp;amp; Advocacy update&lt;br /&gt;
|Jonathan Katz&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:35 - 09:40&lt;br /&gt;
|Funds &amp;amp; Sponsors update&lt;br /&gt;
|Robert Treat/Joe Conway&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:40 - 09:50&lt;br /&gt;
|13.0 release and commitfest schedule&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:50 - 10:10&lt;br /&gt;
|Contributor Recognition: Contributors page update; how well is it working? Should the Developer Meeting serve as recognition?&lt;br /&gt;
|Andres Freund&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|10:10 - 10:30&lt;br /&gt;
|The Evolving Developer Meeting: Goals &amp;amp; What We Want to Accomplish by the end of it?&lt;br /&gt;
|Jonathan Katz, Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|10:30 - 11:00&lt;br /&gt;
|Coffee break&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:00 - 11:15&lt;br /&gt;
|SQL standard update&lt;br /&gt;
|Peter Eisentraut&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:15 - 11:30&lt;br /&gt;
|Locale apocalypse&lt;br /&gt;
|Peter Eisentraut&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:30 - 11:50&lt;br /&gt;
|Release notes: Criteria for major version release notes and depth level.&lt;br /&gt;
|Peter Geoghegan, Álvaro Herrera&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:50 - 12:00&lt;br /&gt;
|Any other business&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|12:00&lt;br /&gt;
|Lunch&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: This timetable is a rough guide only. Items will start as soon as the previous discussion is complete (breaks will not move however). Any remaining time before lunch may be used for Commitfest item triage or other activities.&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33507</id>
		<title>PgCon 2019 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33507"/>
		<updated>2019-05-24T11:17:39Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* Time &amp;amp; Location */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A meeting of the interested PostgreSQL developers is being planned for Tuesday 28 May, 2019 at the University of Ottawa, prior to pgCon 2019. In order to keep the numbers manageable, this meeting is by &#039;&#039;&#039;invitation only&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The invitation list for the meeting has changed this year to include representatives from various project sub-teams, for example, packagers, the release team, Code of Conduct committee and more.&lt;br /&gt;
&lt;br /&gt;
As at last years event, an Unconference will be held on Wednesday for in-depth discussion of technical topics.&lt;br /&gt;
&lt;br /&gt;
This is a PostgreSQL Community event.&lt;br /&gt;
&lt;br /&gt;
== Meeting Goals ==&lt;br /&gt;
&lt;br /&gt;
* Define the schedule for the 13.0 release cycle&lt;br /&gt;
* Address any proposed timing, policy, or procedure issues&lt;br /&gt;
* Receive updates from project sub-teams on their activities and discuss any resulting issues or concerns.&lt;br /&gt;
* Address any proposed [http://en.wikipedia.org/wiki/Wicked_problem Wicked problems]&lt;br /&gt;
&lt;br /&gt;
== Time &amp;amp; Location ==&lt;br /&gt;
&lt;br /&gt;
The meeting will be:&lt;br /&gt;
&lt;br /&gt;
* 9:00AM to 12PM&lt;br /&gt;
* DMS 3105&lt;br /&gt;
* University of Ottawa.&lt;br /&gt;
&lt;br /&gt;
Lunch will be served after the meeting.&lt;br /&gt;
&lt;br /&gt;
== RSVPs ==&lt;br /&gt;
&lt;br /&gt;
The following people have RSVPed to the meeting (in alphabetical order, by surname). Note that we can accommodate a &#039;&#039;&#039;maximum of 30&#039;&#039;&#039;!&lt;br /&gt;
&lt;br /&gt;
# Joe Conway&lt;br /&gt;
# Jeff Davis&lt;br /&gt;
# Andrew Dunstan&lt;br /&gt;
# Peter Eisentraut&lt;br /&gt;
# Andres Freund&lt;br /&gt;
# Stephen Frost&lt;br /&gt;
# Peter Geoghegan&lt;br /&gt;
# Devrim Gündüz&lt;br /&gt;
# Robert Haas&lt;br /&gt;
# Magnus Hagander&lt;br /&gt;
# Stacey Haysler (present for CoC report and discussion only)&lt;br /&gt;
# Álvaro Herrera&lt;br /&gt;
# Amit Kapila&lt;br /&gt;
# Jonathan Katz&lt;br /&gt;
# Haribabu Kommi&lt;br /&gt;
# Alexander Korotkov&lt;br /&gt;
# Tom Lane&lt;br /&gt;
# Heikki Linnakangas&lt;br /&gt;
# Noah Misch&lt;br /&gt;
# Bruce Momjian&lt;br /&gt;
# Thomas Munro&lt;br /&gt;
# John Naylor&lt;br /&gt;
# Dave Page&lt;br /&gt;
# Michael Paquier&lt;br /&gt;
# David Rowley&lt;br /&gt;
# Masahiko Sawada&lt;br /&gt;
# David Steele&lt;br /&gt;
# Robert Treat&lt;br /&gt;
# Tomas Vondra&lt;br /&gt;
&lt;br /&gt;
The following people will not be in Ottawa, and do not plan to attend:&lt;br /&gt;
&lt;br /&gt;
* Christoph Berg&lt;br /&gt;
* Vik Fearing&lt;br /&gt;
* Andreas Scherbaum&lt;br /&gt;
* Sarah Conway Schnurr&lt;br /&gt;
* Ilya Kosmodemiansky&lt;br /&gt;
* Amit Langote&lt;br /&gt;
&lt;br /&gt;
== Agenda Items ==&lt;br /&gt;
&lt;br /&gt;
* 13.0 release and commitfest schedule (Dave)&lt;br /&gt;
* Contributor Recognition (Andres, happy to share / pass, but should be discussed)&lt;br /&gt;
** [https://www.postgresql.org/community/contributors/ contributors] page update - how well is it working?&lt;br /&gt;
** should the developer meeting serve as recognition? &lt;br /&gt;
* The Evolving Developer Meeting: Goals &amp;amp; What We Want to Accomplish by the end of it? (Jonathan, happy to share)&lt;br /&gt;
* SQL standard update (Peter E.)&lt;br /&gt;
* Locale apocalypse (Peter E.)&lt;br /&gt;
* Criteria for major version release notes (Peter Geoghegan)&lt;br /&gt;
* Release notes depth level (Álvaro Herrera, happy to share)&lt;br /&gt;
* &#039;&#039;Please add suggestions for agenda items here. (with your name)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Item&lt;br /&gt;
!Presenter&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|09:00 - 09:10&lt;br /&gt;
|Welcome and introductions&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|09:10 - 09:30&lt;br /&gt;
|Code of Conduct report and discussion&lt;br /&gt;
|Stacey Haysler&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:30 - 09:45&lt;br /&gt;
|13.0 release and commitfest schedule&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:45 - 10:10&lt;br /&gt;
|Contributor Recognition: Contributors page update; how well is it working? Should the Developer Meeting serve as recognition?&lt;br /&gt;
|Andres Freund&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|10:10 - 10:30&lt;br /&gt;
|The Evolving Developer Meeting: Goals &amp;amp; What We Want to Accomplish by the end of it?&lt;br /&gt;
|Jonathan Katz, Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|10:30 - 11:00&lt;br /&gt;
|Coffee break&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:00 - 11:15&lt;br /&gt;
|SQL standard update&lt;br /&gt;
|Peter Eisentraut&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:15 - 11:30&lt;br /&gt;
|Locale apocalypse&lt;br /&gt;
|Peter Eisentraut&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:30 - 11:50&lt;br /&gt;
|Release notes: Criteria for major version release notes and depth level.&lt;br /&gt;
|Peter Geoghegan, Álvaro Herrera&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:50 - 12:00&lt;br /&gt;
|Any other business&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|12:00&lt;br /&gt;
|Lunch&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: This timetable is a rough guide only. Items will start as soon as the previous discussion is complete (breaks will not move however). Any remaining time before lunch may be used for Commitfest item triage or other activities.&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33506</id>
		<title>PgCon 2019 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33506"/>
		<updated>2019-05-24T11:17:29Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* Time &amp;amp; Location */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A meeting of the interested PostgreSQL developers is being planned for Tuesday 28 May, 2019 at the University of Ottawa, prior to pgCon 2019. In order to keep the numbers manageable, this meeting is by &#039;&#039;&#039;invitation only&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The invitation list for the meeting has changed this year to include representatives from various project sub-teams, for example, packagers, the release team, Code of Conduct committee and more.&lt;br /&gt;
&lt;br /&gt;
As at last years event, an Unconference will be held on Wednesday for in-depth discussion of technical topics.&lt;br /&gt;
&lt;br /&gt;
This is a PostgreSQL Community event.&lt;br /&gt;
&lt;br /&gt;
== Meeting Goals ==&lt;br /&gt;
&lt;br /&gt;
* Define the schedule for the 13.0 release cycle&lt;br /&gt;
* Address any proposed timing, policy, or procedure issues&lt;br /&gt;
* Receive updates from project sub-teams on their activities and discuss any resulting issues or concerns.&lt;br /&gt;
* Address any proposed [http://en.wikipedia.org/wiki/Wicked_problem Wicked problems]&lt;br /&gt;
&lt;br /&gt;
== Time &amp;amp; Location ==&lt;br /&gt;
&lt;br /&gt;
The meeting will be:&lt;br /&gt;
&lt;br /&gt;
* 9:00AM to 12PM&lt;br /&gt;
* DMS 3105&lt;br /&gt;
* University of Ottawa.&lt;br /&gt;
&lt;br /&gt;
Lunch will be after the meeting.&lt;br /&gt;
&lt;br /&gt;
== RSVPs ==&lt;br /&gt;
&lt;br /&gt;
The following people have RSVPed to the meeting (in alphabetical order, by surname). Note that we can accommodate a &#039;&#039;&#039;maximum of 30&#039;&#039;&#039;!&lt;br /&gt;
&lt;br /&gt;
# Joe Conway&lt;br /&gt;
# Jeff Davis&lt;br /&gt;
# Andrew Dunstan&lt;br /&gt;
# Peter Eisentraut&lt;br /&gt;
# Andres Freund&lt;br /&gt;
# Stephen Frost&lt;br /&gt;
# Peter Geoghegan&lt;br /&gt;
# Devrim Gündüz&lt;br /&gt;
# Robert Haas&lt;br /&gt;
# Magnus Hagander&lt;br /&gt;
# Stacey Haysler (present for CoC report and discussion only)&lt;br /&gt;
# Álvaro Herrera&lt;br /&gt;
# Amit Kapila&lt;br /&gt;
# Jonathan Katz&lt;br /&gt;
# Haribabu Kommi&lt;br /&gt;
# Alexander Korotkov&lt;br /&gt;
# Tom Lane&lt;br /&gt;
# Heikki Linnakangas&lt;br /&gt;
# Noah Misch&lt;br /&gt;
# Bruce Momjian&lt;br /&gt;
# Thomas Munro&lt;br /&gt;
# John Naylor&lt;br /&gt;
# Dave Page&lt;br /&gt;
# Michael Paquier&lt;br /&gt;
# David Rowley&lt;br /&gt;
# Masahiko Sawada&lt;br /&gt;
# David Steele&lt;br /&gt;
# Robert Treat&lt;br /&gt;
# Tomas Vondra&lt;br /&gt;
&lt;br /&gt;
The following people will not be in Ottawa, and do not plan to attend:&lt;br /&gt;
&lt;br /&gt;
* Christoph Berg&lt;br /&gt;
* Vik Fearing&lt;br /&gt;
* Andreas Scherbaum&lt;br /&gt;
* Sarah Conway Schnurr&lt;br /&gt;
* Ilya Kosmodemiansky&lt;br /&gt;
* Amit Langote&lt;br /&gt;
&lt;br /&gt;
== Agenda Items ==&lt;br /&gt;
&lt;br /&gt;
* 13.0 release and commitfest schedule (Dave)&lt;br /&gt;
* Contributor Recognition (Andres, happy to share / pass, but should be discussed)&lt;br /&gt;
** [https://www.postgresql.org/community/contributors/ contributors] page update - how well is it working?&lt;br /&gt;
** should the developer meeting serve as recognition? &lt;br /&gt;
* The Evolving Developer Meeting: Goals &amp;amp; What We Want to Accomplish by the end of it? (Jonathan, happy to share)&lt;br /&gt;
* SQL standard update (Peter E.)&lt;br /&gt;
* Locale apocalypse (Peter E.)&lt;br /&gt;
* Criteria for major version release notes (Peter Geoghegan)&lt;br /&gt;
* Release notes depth level (Álvaro Herrera, happy to share)&lt;br /&gt;
* &#039;&#039;Please add suggestions for agenda items here. (with your name)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Item&lt;br /&gt;
!Presenter&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|09:00 - 09:10&lt;br /&gt;
|Welcome and introductions&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|09:10 - 09:30&lt;br /&gt;
|Code of Conduct report and discussion&lt;br /&gt;
|Stacey Haysler&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:30 - 09:45&lt;br /&gt;
|13.0 release and commitfest schedule&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:45 - 10:10&lt;br /&gt;
|Contributor Recognition: Contributors page update; how well is it working? Should the Developer Meeting serve as recognition?&lt;br /&gt;
|Andres Freund&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|10:10 - 10:30&lt;br /&gt;
|The Evolving Developer Meeting: Goals &amp;amp; What We Want to Accomplish by the end of it?&lt;br /&gt;
|Jonathan Katz, Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|10:30 - 11:00&lt;br /&gt;
|Coffee break&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:00 - 11:15&lt;br /&gt;
|SQL standard update&lt;br /&gt;
|Peter Eisentraut&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:15 - 11:30&lt;br /&gt;
|Locale apocalypse&lt;br /&gt;
|Peter Eisentraut&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:30 - 11:50&lt;br /&gt;
|Release notes: Criteria for major version release notes and depth level.&lt;br /&gt;
|Peter Geoghegan, Álvaro Herrera&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:50 - 12:00&lt;br /&gt;
|Any other business&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|12:00&lt;br /&gt;
|Lunch&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: This timetable is a rough guide only. Items will start as soon as the previous discussion is complete (breaks will not move however). Any remaining time before lunch may be used for Commitfest item triage or other activities.&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33505</id>
		<title>PgCon 2019 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33505"/>
		<updated>2019-05-24T11:16:58Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* Time &amp;amp; Location */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A meeting of the interested PostgreSQL developers is being planned for Tuesday 28 May, 2019 at the University of Ottawa, prior to pgCon 2019. In order to keep the numbers manageable, this meeting is by &#039;&#039;&#039;invitation only&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The invitation list for the meeting has changed this year to include representatives from various project sub-teams, for example, packagers, the release team, Code of Conduct committee and more.&lt;br /&gt;
&lt;br /&gt;
As at last years event, an Unconference will be held on Wednesday for in-depth discussion of technical topics.&lt;br /&gt;
&lt;br /&gt;
This is a PostgreSQL Community event.&lt;br /&gt;
&lt;br /&gt;
== Meeting Goals ==&lt;br /&gt;
&lt;br /&gt;
* Define the schedule for the 13.0 release cycle&lt;br /&gt;
* Address any proposed timing, policy, or procedure issues&lt;br /&gt;
* Receive updates from project sub-teams on their activities and discuss any resulting issues or concerns.&lt;br /&gt;
* Address any proposed [http://en.wikipedia.org/wiki/Wicked_problem Wicked problems]&lt;br /&gt;
&lt;br /&gt;
== Time &amp;amp; Location ==&lt;br /&gt;
&lt;br /&gt;
The meeting will be:&lt;br /&gt;
&lt;br /&gt;
* 9:00AM to 12PM&lt;br /&gt;
* DMS 3105&lt;br /&gt;
* University of Ottawa.&lt;br /&gt;
&lt;br /&gt;
Coffee, tea and snacks will be served starting at 8:45am.  Lunch will be after the meeting.&lt;br /&gt;
&lt;br /&gt;
== RSVPs ==&lt;br /&gt;
&lt;br /&gt;
The following people have RSVPed to the meeting (in alphabetical order, by surname). Note that we can accommodate a &#039;&#039;&#039;maximum of 30&#039;&#039;&#039;!&lt;br /&gt;
&lt;br /&gt;
# Joe Conway&lt;br /&gt;
# Jeff Davis&lt;br /&gt;
# Andrew Dunstan&lt;br /&gt;
# Peter Eisentraut&lt;br /&gt;
# Andres Freund&lt;br /&gt;
# Stephen Frost&lt;br /&gt;
# Peter Geoghegan&lt;br /&gt;
# Devrim Gündüz&lt;br /&gt;
# Robert Haas&lt;br /&gt;
# Magnus Hagander&lt;br /&gt;
# Stacey Haysler (present for CoC report and discussion only)&lt;br /&gt;
# Álvaro Herrera&lt;br /&gt;
# Amit Kapila&lt;br /&gt;
# Jonathan Katz&lt;br /&gt;
# Haribabu Kommi&lt;br /&gt;
# Alexander Korotkov&lt;br /&gt;
# Tom Lane&lt;br /&gt;
# Heikki Linnakangas&lt;br /&gt;
# Noah Misch&lt;br /&gt;
# Bruce Momjian&lt;br /&gt;
# Thomas Munro&lt;br /&gt;
# John Naylor&lt;br /&gt;
# Dave Page&lt;br /&gt;
# Michael Paquier&lt;br /&gt;
# David Rowley&lt;br /&gt;
# Masahiko Sawada&lt;br /&gt;
# David Steele&lt;br /&gt;
# Robert Treat&lt;br /&gt;
# Tomas Vondra&lt;br /&gt;
&lt;br /&gt;
The following people will not be in Ottawa, and do not plan to attend:&lt;br /&gt;
&lt;br /&gt;
* Christoph Berg&lt;br /&gt;
* Vik Fearing&lt;br /&gt;
* Andreas Scherbaum&lt;br /&gt;
* Sarah Conway Schnurr&lt;br /&gt;
* Ilya Kosmodemiansky&lt;br /&gt;
* Amit Langote&lt;br /&gt;
&lt;br /&gt;
== Agenda Items ==&lt;br /&gt;
&lt;br /&gt;
* 13.0 release and commitfest schedule (Dave)&lt;br /&gt;
* Contributor Recognition (Andres, happy to share / pass, but should be discussed)&lt;br /&gt;
** [https://www.postgresql.org/community/contributors/ contributors] page update - how well is it working?&lt;br /&gt;
** should the developer meeting serve as recognition? &lt;br /&gt;
* The Evolving Developer Meeting: Goals &amp;amp; What We Want to Accomplish by the end of it? (Jonathan, happy to share)&lt;br /&gt;
* SQL standard update (Peter E.)&lt;br /&gt;
* Locale apocalypse (Peter E.)&lt;br /&gt;
* Criteria for major version release notes (Peter Geoghegan)&lt;br /&gt;
* Release notes depth level (Álvaro Herrera, happy to share)&lt;br /&gt;
* &#039;&#039;Please add suggestions for agenda items here. (with your name)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Item&lt;br /&gt;
!Presenter&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|09:00 - 09:10&lt;br /&gt;
|Welcome and introductions&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|09:10 - 09:30&lt;br /&gt;
|Code of Conduct report and discussion&lt;br /&gt;
|Stacey Haysler&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:30 - 09:45&lt;br /&gt;
|13.0 release and commitfest schedule&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:45 - 10:10&lt;br /&gt;
|Contributor Recognition: Contributors page update; how well is it working? Should the Developer Meeting serve as recognition?&lt;br /&gt;
|Andres Freund&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|10:10 - 10:30&lt;br /&gt;
|The Evolving Developer Meeting: Goals &amp;amp; What We Want to Accomplish by the end of it?&lt;br /&gt;
|Jonathan Katz, Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|10:30 - 11:00&lt;br /&gt;
|Coffee break&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:00 - 11:15&lt;br /&gt;
|SQL standard update&lt;br /&gt;
|Peter Eisentraut&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:15 - 11:30&lt;br /&gt;
|Locale apocalypse&lt;br /&gt;
|Peter Eisentraut&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:30 - 11:50&lt;br /&gt;
|Release notes: Criteria for major version release notes and depth level.&lt;br /&gt;
|Peter Geoghegan, Álvaro Herrera&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:50 - 12:00&lt;br /&gt;
|Any other business&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|12:00&lt;br /&gt;
|Lunch&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: This timetable is a rough guide only. Items will start as soon as the previous discussion is complete (breaks will not move however). Any remaining time before lunch may be used for Commitfest item triage or other activities.&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33504</id>
		<title>PgCon 2019 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33504"/>
		<updated>2019-05-24T09:19:47Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* Agenda */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A meeting of the interested PostgreSQL developers is being planned for Tuesday 28 May, 2019 at the University of Ottawa, prior to pgCon 2019. In order to keep the numbers manageable, this meeting is by &#039;&#039;&#039;invitation only&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The invitation list for the meeting has changed this year to include representatives from various project sub-teams, for example, packagers, the release team, Code of Conduct committee and more.&lt;br /&gt;
&lt;br /&gt;
As at last years event, an Unconference will be held on Wednesday for in-depth discussion of technical topics.&lt;br /&gt;
&lt;br /&gt;
This is a PostgreSQL Community event.&lt;br /&gt;
&lt;br /&gt;
== Meeting Goals ==&lt;br /&gt;
&lt;br /&gt;
* Define the schedule for the 13.0 release cycle&lt;br /&gt;
* Address any proposed timing, policy, or procedure issues&lt;br /&gt;
* Receive updates from project sub-teams on their activities and discuss any resulting issues or concerns.&lt;br /&gt;
* Address any proposed [http://en.wikipedia.org/wiki/Wicked_problem Wicked problems]&lt;br /&gt;
&lt;br /&gt;
== Time &amp;amp; Location ==&lt;br /&gt;
&lt;br /&gt;
The meeting will be:&lt;br /&gt;
&lt;br /&gt;
* 9:00AM to 12PM&lt;br /&gt;
* DMS TBC&lt;br /&gt;
* University of Ottawa.&lt;br /&gt;
&lt;br /&gt;
Coffee, tea and snacks will be served starting at 8:45am.  Lunch will be after the meeting.&lt;br /&gt;
&lt;br /&gt;
== RSVPs ==&lt;br /&gt;
&lt;br /&gt;
The following people have RSVPed to the meeting (in alphabetical order, by surname). Note that we can accommodate a &#039;&#039;&#039;maximum of 30&#039;&#039;&#039;!&lt;br /&gt;
&lt;br /&gt;
# Joe Conway&lt;br /&gt;
# Jeff Davis&lt;br /&gt;
# Andrew Dunstan&lt;br /&gt;
# Peter Eisentraut&lt;br /&gt;
# Andres Freund&lt;br /&gt;
# Stephen Frost&lt;br /&gt;
# Peter Geoghegan&lt;br /&gt;
# Devrim Gündüz&lt;br /&gt;
# Robert Haas&lt;br /&gt;
# Magnus Hagander&lt;br /&gt;
# Stacey Haysler (present for CoC report and discussion only)&lt;br /&gt;
# Álvaro Herrera&lt;br /&gt;
# Amit Kapila&lt;br /&gt;
# Jonathan Katz&lt;br /&gt;
# Haribabu Kommi&lt;br /&gt;
# Alexander Korotkov&lt;br /&gt;
# Tom Lane&lt;br /&gt;
# Heikki Linnakangas&lt;br /&gt;
# Noah Misch&lt;br /&gt;
# Bruce Momjian&lt;br /&gt;
# Thomas Munro&lt;br /&gt;
# John Naylor&lt;br /&gt;
# Dave Page&lt;br /&gt;
# Michael Paquier&lt;br /&gt;
# David Rowley&lt;br /&gt;
# Masahiko Sawada&lt;br /&gt;
# David Steele&lt;br /&gt;
# Robert Treat&lt;br /&gt;
# Tomas Vondra&lt;br /&gt;
&lt;br /&gt;
The following people will not be in Ottawa, and do not plan to attend:&lt;br /&gt;
&lt;br /&gt;
* Christoph Berg&lt;br /&gt;
* Vik Fearing&lt;br /&gt;
* Andreas Scherbaum&lt;br /&gt;
* Sarah Conway Schnurr&lt;br /&gt;
* Ilya Kosmodemiansky&lt;br /&gt;
* Amit Langote&lt;br /&gt;
&lt;br /&gt;
== Agenda Items ==&lt;br /&gt;
&lt;br /&gt;
* 13.0 release and commitfest schedule (Dave)&lt;br /&gt;
* Contributor Recognition (Andres, happy to share / pass, but should be discussed)&lt;br /&gt;
** [https://www.postgresql.org/community/contributors/ contributors] page update - how well is it working?&lt;br /&gt;
** should the developer meeting serve as recognition? &lt;br /&gt;
* The Evolving Developer Meeting: Goals &amp;amp; What We Want to Accomplish by the end of it? (Jonathan, happy to share)&lt;br /&gt;
* SQL standard update (Peter E.)&lt;br /&gt;
* Locale apocalypse (Peter E.)&lt;br /&gt;
* Criteria for major version release notes (Peter Geoghegan)&lt;br /&gt;
* Release notes depth level (Álvaro Herrera, happy to share)&lt;br /&gt;
* &#039;&#039;Please add suggestions for agenda items here. (with your name)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Item&lt;br /&gt;
!Presenter&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|09:00 - 09:10&lt;br /&gt;
|Welcome and introductions&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|09:10 - 09:30&lt;br /&gt;
|Code of Conduct report and discussion&lt;br /&gt;
|Stacey Haysler&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:30 - 09:45&lt;br /&gt;
|13.0 release and commitfest schedule&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:45 - 10:10&lt;br /&gt;
|Contributor Recognition: Contributors page update; how well is it working? Should the Developer Meeting serve as recognition?&lt;br /&gt;
|Andres Freund&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|10:10 - 10:30&lt;br /&gt;
|The Evolving Developer Meeting: Goals &amp;amp; What We Want to Accomplish by the end of it?&lt;br /&gt;
|Jonathan Katz, Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|10:30 - 11:00&lt;br /&gt;
|Coffee break&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:00 - 11:15&lt;br /&gt;
|SQL standard update&lt;br /&gt;
|Peter Eisentraut&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:15 - 11:30&lt;br /&gt;
|Locale apocalypse&lt;br /&gt;
|Peter Eisentraut&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:30 - 11:50&lt;br /&gt;
|Release notes: Criteria for major version release notes and depth level.&lt;br /&gt;
|Peter Geoghegan, Álvaro Herrera&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:50 - 12:00&lt;br /&gt;
|Any other business&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|12:00&lt;br /&gt;
|Lunch&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: This timetable is a rough guide only. Items will start as soon as the previous discussion is complete (breaks will not move however). Any remaining time before lunch may be used for Commitfest item triage or other activities.&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33503</id>
		<title>PgCon 2019 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33503"/>
		<updated>2019-05-24T09:18:53Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* Agenda */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A meeting of the interested PostgreSQL developers is being planned for Tuesday 28 May, 2019 at the University of Ottawa, prior to pgCon 2019. In order to keep the numbers manageable, this meeting is by &#039;&#039;&#039;invitation only&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The invitation list for the meeting has changed this year to include representatives from various project sub-teams, for example, packagers, the release team, Code of Conduct committee and more.&lt;br /&gt;
&lt;br /&gt;
As at last years event, an Unconference will be held on Wednesday for in-depth discussion of technical topics.&lt;br /&gt;
&lt;br /&gt;
This is a PostgreSQL Community event.&lt;br /&gt;
&lt;br /&gt;
== Meeting Goals ==&lt;br /&gt;
&lt;br /&gt;
* Define the schedule for the 13.0 release cycle&lt;br /&gt;
* Address any proposed timing, policy, or procedure issues&lt;br /&gt;
* Receive updates from project sub-teams on their activities and discuss any resulting issues or concerns.&lt;br /&gt;
* Address any proposed [http://en.wikipedia.org/wiki/Wicked_problem Wicked problems]&lt;br /&gt;
&lt;br /&gt;
== Time &amp;amp; Location ==&lt;br /&gt;
&lt;br /&gt;
The meeting will be:&lt;br /&gt;
&lt;br /&gt;
* 9:00AM to 12PM&lt;br /&gt;
* DMS TBC&lt;br /&gt;
* University of Ottawa.&lt;br /&gt;
&lt;br /&gt;
Coffee, tea and snacks will be served starting at 8:45am.  Lunch will be after the meeting.&lt;br /&gt;
&lt;br /&gt;
== RSVPs ==&lt;br /&gt;
&lt;br /&gt;
The following people have RSVPed to the meeting (in alphabetical order, by surname). Note that we can accommodate a &#039;&#039;&#039;maximum of 30&#039;&#039;&#039;!&lt;br /&gt;
&lt;br /&gt;
# Joe Conway&lt;br /&gt;
# Jeff Davis&lt;br /&gt;
# Andrew Dunstan&lt;br /&gt;
# Peter Eisentraut&lt;br /&gt;
# Andres Freund&lt;br /&gt;
# Stephen Frost&lt;br /&gt;
# Peter Geoghegan&lt;br /&gt;
# Devrim Gündüz&lt;br /&gt;
# Robert Haas&lt;br /&gt;
# Magnus Hagander&lt;br /&gt;
# Stacey Haysler (present for CoC report and discussion only)&lt;br /&gt;
# Álvaro Herrera&lt;br /&gt;
# Amit Kapila&lt;br /&gt;
# Jonathan Katz&lt;br /&gt;
# Haribabu Kommi&lt;br /&gt;
# Alexander Korotkov&lt;br /&gt;
# Tom Lane&lt;br /&gt;
# Heikki Linnakangas&lt;br /&gt;
# Noah Misch&lt;br /&gt;
# Bruce Momjian&lt;br /&gt;
# Thomas Munro&lt;br /&gt;
# John Naylor&lt;br /&gt;
# Dave Page&lt;br /&gt;
# Michael Paquier&lt;br /&gt;
# David Rowley&lt;br /&gt;
# Masahiko Sawada&lt;br /&gt;
# David Steele&lt;br /&gt;
# Robert Treat&lt;br /&gt;
# Tomas Vondra&lt;br /&gt;
&lt;br /&gt;
The following people will not be in Ottawa, and do not plan to attend:&lt;br /&gt;
&lt;br /&gt;
* Christoph Berg&lt;br /&gt;
* Vik Fearing&lt;br /&gt;
* Andreas Scherbaum&lt;br /&gt;
* Sarah Conway Schnurr&lt;br /&gt;
* Ilya Kosmodemiansky&lt;br /&gt;
* Amit Langote&lt;br /&gt;
&lt;br /&gt;
== Agenda Items ==&lt;br /&gt;
&lt;br /&gt;
* 13.0 release and commitfest schedule (Dave)&lt;br /&gt;
* Contributor Recognition (Andres, happy to share / pass, but should be discussed)&lt;br /&gt;
** [https://www.postgresql.org/community/contributors/ contributors] page update - how well is it working?&lt;br /&gt;
** should the developer meeting serve as recognition? &lt;br /&gt;
* The Evolving Developer Meeting: Goals &amp;amp; What We Want to Accomplish by the end of it? (Jonathan, happy to share)&lt;br /&gt;
* SQL standard update (Peter E.)&lt;br /&gt;
* Locale apocalypse (Peter E.)&lt;br /&gt;
* Criteria for major version release notes (Peter Geoghegan)&lt;br /&gt;
* Release notes depth level (Álvaro Herrera, happy to share)&lt;br /&gt;
* &#039;&#039;Please add suggestions for agenda items here. (with your name)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Item&lt;br /&gt;
!Presenter&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|09:00 - 09:10&lt;br /&gt;
|Welcome and introductions&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|09:10 - 09:30&lt;br /&gt;
|Code of Conduct report and discussion&lt;br /&gt;
|Stacey Haysler&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:30 - 09:45&lt;br /&gt;
|13.0 release and commitfest schedule&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:45 - 10:10&lt;br /&gt;
|Contributor Recognition: Contributors page update; how well is it working? Should the Developer Meeting serve as recognition?&lt;br /&gt;
|Andres Freund&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|10:10 - 10:30&lt;br /&gt;
|The Evolving Developer Meeting: Goals &amp;amp; What We Want to Accomplish by the end of it?&lt;br /&gt;
|Jonathan Katz&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|10:30 - 11:00&lt;br /&gt;
|Coffee break&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:00 - 11:15&lt;br /&gt;
|SQL standard update&lt;br /&gt;
|Peter Eisentraut&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:15 - 11:30&lt;br /&gt;
|Locale apocalypse&lt;br /&gt;
|Peter Eisentraut&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:30 - 11:50&lt;br /&gt;
|Release notes: Criteria for major version release notes and depth level.&lt;br /&gt;
|Peter Geoghegan, Álvaro Herrera&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:50 - 12:00&lt;br /&gt;
|Any other business&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|12:00&lt;br /&gt;
|Lunch&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: This timetable is a rough guide only. Items will start as soon as the previous discussion is complete (breaks will not move however). Any remaining time before lunch may be used for Commitfest item triage or other activities.&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33358</id>
		<title>PgCon 2019 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33358"/>
		<updated>2019-04-16T15:15:52Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* RSVPs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A meeting of the interested PostgreSQL developers is being planned for Tuesday 28 May, 2019 at the University of Ottawa, prior to pgCon 2019. In order to keep the numbers manageable, this meeting is by &#039;&#039;&#039;invitation only&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The invitation list for the meeting has changed this year to include representatives from various project sub-teams, for example, packagers, the release team, Code of Conduct committee and more.&lt;br /&gt;
&lt;br /&gt;
As at last years event, an Unconference will be held on Wednesday for in-depth discussion of technical topics.&lt;br /&gt;
&lt;br /&gt;
This is a PostgreSQL Community event.&lt;br /&gt;
&lt;br /&gt;
== Meeting Goals ==&lt;br /&gt;
&lt;br /&gt;
* Define the schedule for the 13.0 release cycle&lt;br /&gt;
* Address any proposed timing, policy, or procedure issues&lt;br /&gt;
* Receive updates from project sub-teams on their activities and discuss any resulting issues or concerns.&lt;br /&gt;
* Address any proposed [http://en.wikipedia.org/wiki/Wicked_problem Wicked problems]&lt;br /&gt;
&lt;br /&gt;
== Time &amp;amp; Location ==&lt;br /&gt;
&lt;br /&gt;
The meeting will be:&lt;br /&gt;
&lt;br /&gt;
* 9:00AM to 12PM&lt;br /&gt;
* DMS TBC&lt;br /&gt;
* University of Ottawa.&lt;br /&gt;
&lt;br /&gt;
Coffee, tea and snacks will be served starting at 8:45am.  Lunch will be after the meeting.&lt;br /&gt;
&lt;br /&gt;
== RSVPs ==&lt;br /&gt;
&lt;br /&gt;
The following people have RSVPed to the meeting (in alphabetical order, by surname). Note that we can accommodate a &#039;&#039;&#039;maximum of 30&#039;&#039;&#039;!&lt;br /&gt;
&lt;br /&gt;
# Joe Conway&lt;br /&gt;
# Jeff Davis&lt;br /&gt;
# Andrew Dunstan&lt;br /&gt;
# Peter Eisentraut&lt;br /&gt;
# Andres Freund&lt;br /&gt;
# Stephen Frost&lt;br /&gt;
# Peter Geoghegan&lt;br /&gt;
# Devrim Gündüz&lt;br /&gt;
# Robert Haas&lt;br /&gt;
# Magnus Hagander&lt;br /&gt;
# Stacey Haysler (present for CoC report and discussion only)&lt;br /&gt;
# Álvaro Herrera&lt;br /&gt;
# Amit Kapila&lt;br /&gt;
# Jonathan Katz&lt;br /&gt;
# Alexander Korotkov&lt;br /&gt;
# Tom Lane&lt;br /&gt;
# Heikki Linnakangas&lt;br /&gt;
# Noah Misch&lt;br /&gt;
# Bruce Momjian&lt;br /&gt;
# Thomas Munro&lt;br /&gt;
# Dave Page&lt;br /&gt;
# Michael Paquier&lt;br /&gt;
# Tomas Vondra&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following people will not be in Ottawa, and do not plan to attend:&lt;br /&gt;
&lt;br /&gt;
* Christoph Berg&lt;br /&gt;
* Vik Fearing&lt;br /&gt;
* Andreas Scherbaum&lt;br /&gt;
* Sarah Conway Schnurr&lt;br /&gt;
* Ilya Kosmodemiansky&lt;br /&gt;
&lt;br /&gt;
== Agenda Items ==&lt;br /&gt;
&lt;br /&gt;
* 13.0 release and commitfest schedule (Dave)&lt;br /&gt;
* Contributor Recognition (Andres, happy to share / pass, but should be discussed)&lt;br /&gt;
** [https://www.postgresql.org/community/contributors/ contributors] page update - how well is it working?&lt;br /&gt;
** should the developer meeting serve as recognition? &lt;br /&gt;
* The Evolving Developer Meeting: Goals &amp;amp; What We Want to Accomplish by the end of it? (Jonathan, happy to share)&lt;br /&gt;
* SQL standard update (Peter E.)&lt;br /&gt;
* &#039;&#039;Please add suggestions for agenda items here. (with your name)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Item&lt;br /&gt;
!Presenter&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|09:00 - 09:10&lt;br /&gt;
|Welcome and introductions&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|09:10 - 09:30&lt;br /&gt;
|Code of Conduct report and discussion&lt;br /&gt;
|Stacey Haysler&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:30 - 09:45&lt;br /&gt;
|12.0 release and commitfest schedule&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|10:30 - 11:00&lt;br /&gt;
|Coffee break&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:50 - 12:00&lt;br /&gt;
|Any other business&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|12:00&lt;br /&gt;
|Lunch&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: This timetable is a rough guide only. Items will start as soon as the previous discussion is complete (breaks will not move however). Any remaining time before lunch may be used for Commitfest item triage or other activities.&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33355</id>
		<title>PgCon 2019 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33355"/>
		<updated>2019-04-16T07:49:16Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* RSVPs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A meeting of the interested PostgreSQL developers is being planned for Tuesday 28 May, 2019 at the University of Ottawa, prior to pgCon 2019. In order to keep the numbers manageable, this meeting is by &#039;&#039;&#039;invitation only&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The invitation list for the meeting has changed this year to include representatives from various project sub-teams, for example, packagers, the release team, Code of Conduct committee and more.&lt;br /&gt;
&lt;br /&gt;
As at last years event, an Unconference will be held on Wednesday for in-depth discussion of technical topics.&lt;br /&gt;
&lt;br /&gt;
This is a PostgreSQL Community event.&lt;br /&gt;
&lt;br /&gt;
== Meeting Goals ==&lt;br /&gt;
&lt;br /&gt;
* Define the schedule for the 13.0 release cycle&lt;br /&gt;
* Address any proposed timing, policy, or procedure issues&lt;br /&gt;
* Receive updates from project sub-teams on their activities and discuss any resulting issues or concerns.&lt;br /&gt;
* Address any proposed [http://en.wikipedia.org/wiki/Wicked_problem Wicked problems]&lt;br /&gt;
&lt;br /&gt;
== Time &amp;amp; Location ==&lt;br /&gt;
&lt;br /&gt;
The meeting will be:&lt;br /&gt;
&lt;br /&gt;
* 9:00AM to 12PM&lt;br /&gt;
* DMS TBC&lt;br /&gt;
* University of Ottawa.&lt;br /&gt;
&lt;br /&gt;
Coffee, tea and snacks will be served starting at 8:45am.  Lunch will be after the meeting.&lt;br /&gt;
&lt;br /&gt;
== RSVPs ==&lt;br /&gt;
&lt;br /&gt;
The following people have RSVPed to the meeting (in alphabetical order, by surname). Note that we can accommodate a &#039;&#039;&#039;maximum of 30&#039;&#039;&#039;!&lt;br /&gt;
&lt;br /&gt;
# Joe Conway&lt;br /&gt;
# Jeff Davis&lt;br /&gt;
# Andrew Dunstan&lt;br /&gt;
# Peter Eisentraut&lt;br /&gt;
# Andres Freund&lt;br /&gt;
# Stephen Frost&lt;br /&gt;
# Peter Geoghegan&lt;br /&gt;
# Devrim Gündüz&lt;br /&gt;
# Robert Haas&lt;br /&gt;
# Magnus Hagander&lt;br /&gt;
# Stacey Haysler (present for CoC report and discussion only)&lt;br /&gt;
# Álvaro Herrera&lt;br /&gt;
# Amit Kapila&lt;br /&gt;
# Jonathan Katz&lt;br /&gt;
# Alexander Korotkov&lt;br /&gt;
# Tom Lane&lt;br /&gt;
# Heikki Linnakangas&lt;br /&gt;
# Noah Misch&lt;br /&gt;
# Bruce Momjian&lt;br /&gt;
# Thomas Munro&lt;br /&gt;
# Dave Page&lt;br /&gt;
# Michael Paquier&lt;br /&gt;
# Tomas Vondra&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following people will not be in Ottawa, and do not plan to attend:&lt;br /&gt;
&lt;br /&gt;
* Christoph Berg&lt;br /&gt;
* Andreas Scherbaum&lt;br /&gt;
* Sarah Conway Schnurr&lt;br /&gt;
* Ilya Kosmodemiansky&lt;br /&gt;
&lt;br /&gt;
== Agenda Items ==&lt;br /&gt;
&lt;br /&gt;
* 13.0 release and commitfest schedule (Dave)&lt;br /&gt;
* Contributor Recognition (Andres, happy to share / pass, but should be discussed)&lt;br /&gt;
** [https://www.postgresql.org/community/contributors/ contributors] page update - how well is it working?&lt;br /&gt;
** should the developer meeting serve as recognition? &lt;br /&gt;
* The Evolving Developer Meeting: Goals &amp;amp; What We Want to Accomplish by the end of it? (Jonathan, happy to share)&lt;br /&gt;
* SQL standard update (Peter E.)&lt;br /&gt;
* &#039;&#039;Please add suggestions for agenda items here. (with your name)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Item&lt;br /&gt;
!Presenter&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|09:00 - 09:10&lt;br /&gt;
|Welcome and introductions&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|09:10 - 09:30&lt;br /&gt;
|Code of Conduct report and discussion&lt;br /&gt;
|Stacey Haysler&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:30 - 09:45&lt;br /&gt;
|12.0 release and commitfest schedule&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|10:30 - 11:00&lt;br /&gt;
|Coffee break&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:50 - 12:00&lt;br /&gt;
|Any other business&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|12:00&lt;br /&gt;
|Lunch&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: This timetable is a rough guide only. Items will start as soon as the previous discussion is complete (breaks will not move however). Any remaining time before lunch may be used for Commitfest item triage or other activities.&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33354</id>
		<title>PgCon 2019 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33354"/>
		<updated>2019-04-16T07:49:04Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* Agenda */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A meeting of the interested PostgreSQL developers is being planned for Tuesday 28 May, 2019 at the University of Ottawa, prior to pgCon 2019. In order to keep the numbers manageable, this meeting is by &#039;&#039;&#039;invitation only&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The invitation list for the meeting has changed this year to include representatives from various project sub-teams, for example, packagers, the release team, Code of Conduct committee and more.&lt;br /&gt;
&lt;br /&gt;
As at last years event, an Unconference will be held on Wednesday for in-depth discussion of technical topics.&lt;br /&gt;
&lt;br /&gt;
This is a PostgreSQL Community event.&lt;br /&gt;
&lt;br /&gt;
== Meeting Goals ==&lt;br /&gt;
&lt;br /&gt;
* Define the schedule for the 13.0 release cycle&lt;br /&gt;
* Address any proposed timing, policy, or procedure issues&lt;br /&gt;
* Receive updates from project sub-teams on their activities and discuss any resulting issues or concerns.&lt;br /&gt;
* Address any proposed [http://en.wikipedia.org/wiki/Wicked_problem Wicked problems]&lt;br /&gt;
&lt;br /&gt;
== Time &amp;amp; Location ==&lt;br /&gt;
&lt;br /&gt;
The meeting will be:&lt;br /&gt;
&lt;br /&gt;
* 9:00AM to 12PM&lt;br /&gt;
* DMS TBC&lt;br /&gt;
* University of Ottawa.&lt;br /&gt;
&lt;br /&gt;
Coffee, tea and snacks will be served starting at 8:45am.  Lunch will be after the meeting.&lt;br /&gt;
&lt;br /&gt;
== RSVPs ==&lt;br /&gt;
&lt;br /&gt;
The following people have RSVPed to the meeting (in alphabetical order, by surname). Note that we can accommodate a &#039;&#039;&#039;maximum of 30&#039;&#039;&#039;!&lt;br /&gt;
&lt;br /&gt;
# Joe Conway&lt;br /&gt;
# Jeff Davis&lt;br /&gt;
# Andrew Dunstan&lt;br /&gt;
# Peter Eisentraut&lt;br /&gt;
# Andres Freund&lt;br /&gt;
# Stephen Frost&lt;br /&gt;
# Peter Geoghegan&lt;br /&gt;
# Devrim Gündüz&lt;br /&gt;
# Robert Haas&lt;br /&gt;
# Magnus Hagander&lt;br /&gt;
# Stacey Haysler (present for CoC presentation and discussion only)&lt;br /&gt;
# Álvaro Herrera&lt;br /&gt;
# Amit Kapila&lt;br /&gt;
# Jonathan Katz&lt;br /&gt;
# Alexander Korotkov&lt;br /&gt;
# Tom Lane&lt;br /&gt;
# Heikki Linnakangas&lt;br /&gt;
# Noah Misch&lt;br /&gt;
# Bruce Momjian&lt;br /&gt;
# Thomas Munro&lt;br /&gt;
# Dave Page&lt;br /&gt;
# Michael Paquier&lt;br /&gt;
# Tomas Vondra&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following people will not be in Ottawa, and do not plan to attend:&lt;br /&gt;
&lt;br /&gt;
* Christoph Berg&lt;br /&gt;
* Andreas Scherbaum&lt;br /&gt;
* Sarah Conway Schnurr&lt;br /&gt;
* Ilya Kosmodemiansky&lt;br /&gt;
&lt;br /&gt;
== Agenda Items ==&lt;br /&gt;
&lt;br /&gt;
* 13.0 release and commitfest schedule (Dave)&lt;br /&gt;
* Contributor Recognition (Andres, happy to share / pass, but should be discussed)&lt;br /&gt;
** [https://www.postgresql.org/community/contributors/ contributors] page update - how well is it working?&lt;br /&gt;
** should the developer meeting serve as recognition? &lt;br /&gt;
* The Evolving Developer Meeting: Goals &amp;amp; What We Want to Accomplish by the end of it? (Jonathan, happy to share)&lt;br /&gt;
* SQL standard update (Peter E.)&lt;br /&gt;
* &#039;&#039;Please add suggestions for agenda items here. (with your name)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Item&lt;br /&gt;
!Presenter&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|09:00 - 09:10&lt;br /&gt;
|Welcome and introductions&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|09:10 - 09:30&lt;br /&gt;
|Code of Conduct report and discussion&lt;br /&gt;
|Stacey Haysler&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:30 - 09:45&lt;br /&gt;
|12.0 release and commitfest schedule&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|10:30 - 11:00&lt;br /&gt;
|Coffee break&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:50 - 12:00&lt;br /&gt;
|Any other business&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|12:00&lt;br /&gt;
|Lunch&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: This timetable is a rough guide only. Items will start as soon as the previous discussion is complete (breaks will not move however). Any remaining time before lunch may be used for Commitfest item triage or other activities.&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33353</id>
		<title>PgCon 2019 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33353"/>
		<updated>2019-04-16T07:47:49Z</updated>

		<summary type="html">&lt;p&gt;Dpage: /* RSVPs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A meeting of the interested PostgreSQL developers is being planned for Tuesday 28 May, 2019 at the University of Ottawa, prior to pgCon 2019. In order to keep the numbers manageable, this meeting is by &#039;&#039;&#039;invitation only&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The invitation list for the meeting has changed this year to include representatives from various project sub-teams, for example, packagers, the release team, Code of Conduct committee and more.&lt;br /&gt;
&lt;br /&gt;
As at last years event, an Unconference will be held on Wednesday for in-depth discussion of technical topics.&lt;br /&gt;
&lt;br /&gt;
This is a PostgreSQL Community event.&lt;br /&gt;
&lt;br /&gt;
== Meeting Goals ==&lt;br /&gt;
&lt;br /&gt;
* Define the schedule for the 13.0 release cycle&lt;br /&gt;
* Address any proposed timing, policy, or procedure issues&lt;br /&gt;
* Receive updates from project sub-teams on their activities and discuss any resulting issues or concerns.&lt;br /&gt;
* Address any proposed [http://en.wikipedia.org/wiki/Wicked_problem Wicked problems]&lt;br /&gt;
&lt;br /&gt;
== Time &amp;amp; Location ==&lt;br /&gt;
&lt;br /&gt;
The meeting will be:&lt;br /&gt;
&lt;br /&gt;
* 9:00AM to 12PM&lt;br /&gt;
* DMS TBC&lt;br /&gt;
* University of Ottawa.&lt;br /&gt;
&lt;br /&gt;
Coffee, tea and snacks will be served starting at 8:45am.  Lunch will be after the meeting.&lt;br /&gt;
&lt;br /&gt;
== RSVPs ==&lt;br /&gt;
&lt;br /&gt;
The following people have RSVPed to the meeting (in alphabetical order, by surname). Note that we can accommodate a &#039;&#039;&#039;maximum of 30&#039;&#039;&#039;!&lt;br /&gt;
&lt;br /&gt;
# Joe Conway&lt;br /&gt;
# Jeff Davis&lt;br /&gt;
# Andrew Dunstan&lt;br /&gt;
# Peter Eisentraut&lt;br /&gt;
# Andres Freund&lt;br /&gt;
# Stephen Frost&lt;br /&gt;
# Peter Geoghegan&lt;br /&gt;
# Devrim Gündüz&lt;br /&gt;
# Robert Haas&lt;br /&gt;
# Magnus Hagander&lt;br /&gt;
# Stacey Haysler (present for CoC presentation and discussion only)&lt;br /&gt;
# Álvaro Herrera&lt;br /&gt;
# Amit Kapila&lt;br /&gt;
# Jonathan Katz&lt;br /&gt;
# Alexander Korotkov&lt;br /&gt;
# Tom Lane&lt;br /&gt;
# Heikki Linnakangas&lt;br /&gt;
# Noah Misch&lt;br /&gt;
# Bruce Momjian&lt;br /&gt;
# Thomas Munro&lt;br /&gt;
# Dave Page&lt;br /&gt;
# Michael Paquier&lt;br /&gt;
# Tomas Vondra&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following people will not be in Ottawa, and do not plan to attend:&lt;br /&gt;
&lt;br /&gt;
* Christoph Berg&lt;br /&gt;
* Andreas Scherbaum&lt;br /&gt;
* Sarah Conway Schnurr&lt;br /&gt;
* Ilya Kosmodemiansky&lt;br /&gt;
&lt;br /&gt;
== Agenda Items ==&lt;br /&gt;
&lt;br /&gt;
* 13.0 release and commitfest schedule (Dave)&lt;br /&gt;
* Contributor Recognition (Andres, happy to share / pass, but should be discussed)&lt;br /&gt;
** [https://www.postgresql.org/community/contributors/ contributors] page update - how well is it working?&lt;br /&gt;
** should the developer meeting serve as recognition? &lt;br /&gt;
* The Evolving Developer Meeting: Goals &amp;amp; What We Want to Accomplish by the end of it? (Jonathan, happy to share)&lt;br /&gt;
* SQL standard update (Peter E.)&lt;br /&gt;
* &#039;&#039;Please add suggestions for agenda items here. (with your name)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Item&lt;br /&gt;
!Presenter&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|09:00 - 09:30&lt;br /&gt;
|Welcome and introductions&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:30 - 09:45&lt;br /&gt;
|12.0 release and commitfest schedule&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|10:30 - 11:00&lt;br /&gt;
|Coffee break&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:50 - 12:00&lt;br /&gt;
|Any other business&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|12:00&lt;br /&gt;
|Lunch&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: This timetable is a rough guide only. Items will start as soon as the previous discussion is complete (breaks will not move however). Any remaining time before lunch may be used for Commitfest item triage or other activities.&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
	<entry>
		<id>https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33325</id>
		<title>PgCon 2019 Developer Meeting</title>
		<link rel="alternate" type="text/html" href="https://wiki.postgresql.org/index.php?title=PgCon_2019_Developer_Meeting&amp;diff=33325"/>
		<updated>2019-04-15T08:05:00Z</updated>

		<summary type="html">&lt;p&gt;Dpage: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A meeting of the interested PostgreSQL developers is being planned for Tuesday 28 May, 2019 at the University of Ottawa, prior to pgCon 2019. In order to keep the numbers manageable, this meeting is by &#039;&#039;&#039;invitation only&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
The invitation list for the meeting has changed this year to include representatives from various project sub-teams, for example, packagers, the release team, Code of Conduct committee and more.&lt;br /&gt;
&lt;br /&gt;
As at last years event, an Unconference will be held on Wednesday for in-depth discussion of technical topics.&lt;br /&gt;
&lt;br /&gt;
This is a PostgreSQL Community event.&lt;br /&gt;
&lt;br /&gt;
== Meeting Goals ==&lt;br /&gt;
&lt;br /&gt;
* Define the schedule for the 13.0 release cycle&lt;br /&gt;
* Address any proposed timing, policy, or procedure issues&lt;br /&gt;
* Receive updates from project sub-teams on their activities and discuss any resulting issues or concerns.&lt;br /&gt;
* Address any proposed [http://en.wikipedia.org/wiki/Wicked_problem Wicked problems]&lt;br /&gt;
&lt;br /&gt;
== Time &amp;amp; Location ==&lt;br /&gt;
&lt;br /&gt;
The meeting will be:&lt;br /&gt;
&lt;br /&gt;
* 9:00AM to 12PM&lt;br /&gt;
* DMS TBC&lt;br /&gt;
* University of Ottawa.&lt;br /&gt;
&lt;br /&gt;
Coffee, tea and snacks will be served starting at 8:45am.  Lunch will be after the meeting.&lt;br /&gt;
&lt;br /&gt;
== RSVPs ==&lt;br /&gt;
&lt;br /&gt;
The following people have RSVPed to the meeting (in alphabetical order, by surname). Note that we can accommodate a &#039;&#039;&#039;maximum of 30&#039;&#039;&#039;!&lt;br /&gt;
&lt;br /&gt;
# Joe Conway&lt;br /&gt;
# Jeff Davis&lt;br /&gt;
# Andrew Dunstan&lt;br /&gt;
# Peter Eisentraut&lt;br /&gt;
# Andres Freund&lt;br /&gt;
# Peter Geoghegan&lt;br /&gt;
# Devrim Gündüz&lt;br /&gt;
# Magnus Hagander&lt;br /&gt;
# Álvaro Herrera&lt;br /&gt;
# Amit Kapila&lt;br /&gt;
# Jonathan Katz&lt;br /&gt;
# Alexander Korotkov&lt;br /&gt;
# Tom Lane&lt;br /&gt;
# Heikki Linnakangas&lt;br /&gt;
# Noah Misch&lt;br /&gt;
# Bruce Momjian&lt;br /&gt;
# Dave Page&lt;br /&gt;
# Tomas Vondra&lt;br /&gt;
# Robert Haas&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The following people will not be in Ottawa, and do not plan to attend:&lt;br /&gt;
&lt;br /&gt;
* Christoph Berg&lt;br /&gt;
* Andreas Scherbaum&lt;br /&gt;
* Sarah Conway Schnurr&lt;br /&gt;
&lt;br /&gt;
== Agenda Items ==&lt;br /&gt;
&lt;br /&gt;
* 13.0 release and commitfest schedule (Dave)&lt;br /&gt;
* Contributor Recognition (Andres, happy to share / pass, but should be discussed)&lt;br /&gt;
** [https://www.postgresql.org/community/contributors/ contributors] page update - how well is it working?&lt;br /&gt;
** should the developer meeting serve as recognition? &lt;br /&gt;
* The Evolving Developer Meeting: Goals &amp;amp; What We Want to Accomplish by the end of it? (Jonathan, happy to share)&lt;br /&gt;
* SQL standard update (Peter E.)&lt;br /&gt;
* &#039;&#039;Please add suggestions for agenda items here. (with your name)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Agenda==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
!Time&lt;br /&gt;
!Item&lt;br /&gt;
!Presenter&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|09:00 - 09:30&lt;br /&gt;
|Welcome and introductions&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|09:30 - 09:45&lt;br /&gt;
|12.0 release and commitfest schedule&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|10:30 - 11:00&lt;br /&gt;
|Coffee break&lt;br /&gt;
|All&lt;br /&gt;
&lt;br /&gt;
|- &lt;br /&gt;
|11:50 - 12:00&lt;br /&gt;
|Any other business&lt;br /&gt;
|Dave Page&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;font-style:italic;background-color:lightgray;&amp;quot;&lt;br /&gt;
|12:00&lt;br /&gt;
|Lunch&lt;br /&gt;
|&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Note: This timetable is a rough guide only. Items will start as soon as the previous discussion is complete (breaks will not move however). Any remaining time before lunch may be used for Commitfest item triage or other activities.&lt;/div&gt;</summary>
		<author><name>Dpage</name></author>
	</entry>
</feed>