Update files for 1.3.0b1 release

git-svn-id: https://plugins.svn.wordpress.org/postgresql-for-wordpress/trunk@546585 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
hawk__
2012-05-20 13:47:51 +00:00
parent bb14143c77
commit 7af156a7c7
2 changed files with 17 additions and 3 deletions

View File

@ -3,7 +3,7 @@
Plugin Name: PostgreSQL for WordPress (PG4WP) Plugin Name: PostgreSQL for WordPress (PG4WP)
Plugin URI: http://www.hawkix.net Plugin URI: http://www.hawkix.net
Description: PG4WP is a special 'plugin' enabling WordPress to use a PostgreSQL database. Description: PG4WP is a special 'plugin' enabling WordPress to use a PostgreSQL database.
Version: 1.2.2 Version: 1.3.0b1
Author: Hawk__ Author: Hawk__
Author URI: http://www.hawkix.net Author URI: http://www.hawkix.net
License: GPLv2 or newer. License: GPLv2 or newer.

View File

@ -2,8 +2,8 @@
Contributors: Hawk__ (http://www.hawkix.net/) Contributors: Hawk__ (http://www.hawkix.net/)
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=FPT8RPZGFX7GU Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=FPT8RPZGFX7GU
Tags: database, postgresql, PostgreSQL, postgres, mysql Tags: database, postgresql, PostgreSQL, postgres, mysql
Requires at least: 2.5.1 Requires at least: 2.9.1
Tested up to: 3.2.1 Tested up to: 3.3.2
Stable tag: 1.2.2 Stable tag: 1.2.2
PostgreSQL for WordPress is a special 'plugin' enabling WordPress to be used with a PostgreSQL database. PostgreSQL for WordPress is a special 'plugin' enabling WordPress to be used with a PostgreSQL database.
@ -17,6 +17,13 @@ Currently, support is focused on PostgreSQL, but other databases can be added qu
MySQL driver is enclosed, which just does "nothing". MySQL driver is enclosed, which just does "nothing".
If you need/wish support for another database, please feel free to contact the author, writing a driver is not really hard if you know a bit about SQL and the database you want support for. If you need/wish support for another database, please feel free to contact the author, writing a driver is not really hard if you know a bit about SQL and the database you want support for.
If you want to use this plugin, you should be aware of the following :
- WordPress with PG4WP is expected to be much slower than the original WordPress with MySQL because PG4WP does much SQL rewriting for any page view
- Some WordPress plugins should work 'out of the box' but most plugins won't because they would need specific code in PG4WP
You shouldn't expect any plugin specific code to be integrated into PG4WP except for plugins shipped with WordPress itself (such as Akismet).
PG4WP 2.0 will have a mechanism to add plugin support.
== Installation == == Installation ==
You have to install PG4WP *before* configuring your WordPress installation for things to work properly. You have to install PG4WP *before* configuring your WordPress installation for things to work properly.
@ -43,6 +50,13 @@ There is no screenshot for this plugin
== Changelog == == Changelog ==
= 1.3.0b1 =
* Added support for PostgreSQL 9.1+ (doesn't break compatibility with older versions)
* Added support for specifying port in the server host (eg 'localhost:3128') (Patch from convict)
* Added a handle for converting CAST(... AS CHAR) to CAST(... AS TEXT) (Problem pointed out by Aart Jan)
* Added a filter to remove 'IF NOT EXISTS' for 'CREATE TABLE' queries
* Enhancements for WPMU support
= 1.2.2 = = 1.2.2 =
* Corrected SQL_CALC_FOUND_ROWS handling, was broken by the latest code reorganisation * Corrected SQL_CALC_FOUND_ROWS handling, was broken by the latest code reorganisation