<feed xmlns='http://www.w3.org/2005/Atom'>
<title>adodb/datadict/datadict-postgres.inc.php, branch master</title>
<subtitle>adodb PHP Database Abstraction Layer
</subtitle>
<id>https://git.rdm1.uk/adodb/.git/atom?h=master</id>
<link rel='self' href='https://git.rdm1.uk/adodb/.git/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.rdm1.uk/adodb/.git/'/>
<updated>2026-02-10T18:30:45Z</updated>
<entry>
<title>Coding guidelines</title>
<updated>2026-02-10T18:30:45Z</updated>
<author>
<name>Damien Regad</name>
<email>dregad@mantisbt.org</email>
</author>
<published>2026-02-10T18:30:45Z</published>
<link rel='alternate' type='text/html' href='https://git.rdm1.uk/adodb/.git/commit/?id=be012385e13628109de6fc986f158974c6b2aa19'/>
<id>urn:sha1:be012385e13628109de6fc986f158974c6b2aa19</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Refactor if statement</title>
<updated>2026-02-10T18:29:06Z</updated>
<author>
<name>Damien Regad</name>
<email>dregad@mantisbt.org</email>
</author>
<published>2026-02-10T18:29:06Z</published>
<link rel='alternate' type='text/html' href='https://git.rdm1.uk/adodb/.git/commit/?id=f834b8efb018e1024540150210a151c1d1203262'/>
<id>urn:sha1:f834b8efb018e1024540150210a151c1d1203262</id>
<content type='text'>
There is no need for nested ifs here, since the else clauses are
identical. Use anded condition instead.
</content>
</entry>
<entry>
<title>Obtains values of $v and $t before use</title>
<updated>2026-02-09T22:55:41Z</updated>
<author>
<name>Mark Newnham</name>
<email>mark@newnhams.com</email>
</author>
<published>2026-02-09T22:55:41Z</published>
<link rel='alternate' type='text/html' href='https://git.rdm1.uk/adodb/.git/commit/?id=f67b2273187925d5b84a4747bc91c2f32d9e8444'/>
<id>urn:sha1:f67b2273187925d5b84a4747bc91c2f32d9e8444</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixes invalid array key error</title>
<updated>2026-02-09T00:25:20Z</updated>
<author>
<name>Mark Newnham</name>
<email>mark@newnhams.com</email>
</author>
<published>2026-02-09T00:25:20Z</published>
<link rel='alternate' type='text/html' href='https://git.rdm1.uk/adodb/.git/commit/?id=d86521c62332cf3165326c4814c8726286fe27d1'/>
<id>urn:sha1:d86521c62332cf3165326c4814c8726286fe27d1</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge branch 'hotfix/5.22'</title>
<updated>2025-03-22T23:44:10Z</updated>
<author>
<name>Damien Regad</name>
<email>dregad@mantisbt.org</email>
</author>
<published>2025-03-22T23:44:10Z</published>
<link rel='alternate' type='text/html' href='https://git.rdm1.uk/adodb/.git/commit/?id=35442067b3e2939ebf9ff129df10a1f3df1afa10'/>
<id>urn:sha1:35442067b3e2939ebf9ff129df10a1f3df1afa10</id>
<content type='text'>
# Conflicts:
#	datadict/datadict-sqlite.inc.php
</content>
</entry>
<entry>
<title>Fulfill SQLite PRIMARY KEY AUTOINCREMENT requirements</title>
<updated>2025-03-22T23:40:09Z</updated>
<author>
<name>Damien Regad</name>
<email>dregad@mantisbt.org</email>
</author>
<published>2025-03-22T23:37:16Z</published>
<link rel='alternate' type='text/html' href='https://git.rdm1.uk/adodb/.git/commit/?id=cdaa6e04c794c10f030e7dae072092e5de5871f0'/>
<id>urn:sha1:cdaa6e04c794c10f030e7dae072092e5de5871f0</id>
<content type='text'>
- Extend _CreateSuffix() with two additional parameters.
- Adjust _createSuffix function name.
- Add PHPDoc block
- Fix spaces

Fixes #1055

Signed-off-by: Damien Regad &lt;dregad@mantisbt.org&gt;

Changes from PR:
- Original commits squashed
- Removed space after `&amp;` for byref params
- Updated Changelog
</content>
</entry>
<entry>
<title>Fix typos</title>
<updated>2024-12-23T19:35:23Z</updated>
<author>
<name>Andreas Deininger</name>
<email>andreas@deininger.net</email>
</author>
<published>2024-12-23T19:35:23Z</published>
<link rel='alternate' type='text/html' href='https://git.rdm1.uk/adodb/.git/commit/?id=316bba3ba6efdec86a9e6f03ee765212b6489097'/>
<id>urn:sha1:316bba3ba6efdec86a9e6f03ee765212b6489097</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Use IF NOT EXISTS when adding a new column </title>
<updated>2023-01-16T17:47:23Z</updated>
<author>
<name>Ioannis Igoumenos</name>
<email>ioigoume@admin.grnet.gr</email>
</author>
<published>2023-01-16T17:47:23Z</published>
<link rel='alternate' type='text/html' href='https://git.rdm1.uk/adodb/.git/commit/?id=9cd3cb64065153897010f5aa4571fb716d0007f0'/>
<id>urn:sha1:9cd3cb64065153897010f5aa4571fb716d0007f0</id>
<content type='text'>
Executing a schema update that adds a column more than once will 
generate a column already exists error.

This prevents the error by appending `IF NOT EXISTS` to the generated 
SQL on PostgreSQL 9.6 or later.

Fixes #897

Signed-off-by: Damien Regad &lt;dregad@mantisbt.org&gt;

Reworded commit message</content>
</entry>
<entry>
<title>Fix reported errors in generated documentation</title>
<updated>2022-01-16T17:23:45Z</updated>
<author>
<name>Damien Regad</name>
<email>dregad@mantisbt.org</email>
</author>
<published>2021-10-25T17:05:43Z</published>
<link rel='alternate' type='text/html' href='https://git.rdm1.uk/adodb/.git/commit/?id=c89ce556bd5f60a9dc337a3c809163c20c4208a9'/>
<id>urn:sha1:c89ce556bd5f60a9dc337a3c809163c20c4208a9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Whitespace</title>
<updated>2021-10-25T20:59:08Z</updated>
<author>
<name>Damien Regad</name>
<email>dregad@mantisbt.org</email>
</author>
<published>2021-10-25T16:19:18Z</published>
<link rel='alternate' type='text/html' href='https://git.rdm1.uk/adodb/.git/commit/?id=f8cf47ff035453329768380bcbb983c14fbd394f'/>
<id>urn:sha1:f8cf47ff035453329768380bcbb983c14fbd394f</id>
<content type='text'>
</content>
</entry>
</feed>
