fixed the bug for BETWEEN statement
git-svn-id: https://plugins.svn.wordpress.org/sqlite-integration/trunk@895814 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
parent
862acb1899
commit
f6859effd2
|
@ -718,7 +718,7 @@ class PDOSQLiteDriver {
|
||||||
*/
|
*/
|
||||||
private function rewrite_between() {
|
private function rewrite_between() {
|
||||||
if (!$this->rewrite_between) return;
|
if (!$this->rewrite_between) return;
|
||||||
$pattern = '/\\s*(\\w+)?\\s*BETWEEN\\s*([^\\s]*)?\\s*AND\\s*([^\\s]*)?\\s*/ims';
|
$pattern = '/\\s*([^\\s\(]*)?\\s*BETWEEN\\s*([^\\s]*)?\\s*AND\\s*([^\\s\)]*)?\\s*/ims';
|
||||||
if (preg_match($pattern, $this->_query, $match)) {
|
if (preg_match($pattern, $this->_query, $match)) {
|
||||||
$column_name = trim($match[1]);
|
$column_name = trim($match[1]);
|
||||||
$min_value = trim($match[2]);
|
$min_value = trim($match[2]);
|
||||||
|
|
|
@ -161,7 +161,7 @@ query_posts() や WP_Query() を使うときに、オプションの一部が機
|
||||||
|
|
||||||
== Changelog ==
|
== Changelog ==
|
||||||
|
|
||||||
= 1.6 (2014-04-27) =
|
= 1.6 (2014-04-17) =
|
||||||
* 未対応のクエリに対するエラーメッセージのコントロールができていないのを修正しました。
|
* 未対応のクエリに対するエラーメッセージのコントロールができていないのを修正しました。
|
||||||
* SQL_CALC_FOUND_ROW ステートメントのバグを修正しました。メインクエリと WP_Query、WP_Meta_Query などのページング情報に関連したものです。
|
* SQL_CALC_FOUND_ROW ステートメントのバグを修正しました。メインクエリと WP_Query、WP_Meta_Query などのページング情報に関連したものです。
|
||||||
* コメント本文からバッククォートが削除されるバグを修正しました。
|
* コメント本文からバッククォートが削除されるバグを修正しました。
|
||||||
|
|
|
@ -159,7 +159,7 @@ When query_posts() or WP_Query() is used, some options didn't work properly. Whe
|
||||||
|
|
||||||
== Changelog ==
|
== Changelog ==
|
||||||
|
|
||||||
= 1.6 (2014-04-10) =
|
= 1.6 (2014-04-17) =
|
||||||
* Fixed the bug of error messaging control for the unknown query.
|
* Fixed the bug of error messaging control for the unknown query.
|
||||||
* Fixed the bug for 'SQL_CALC_FOUND_ROW' statement. This is for the main query, WP_Query class and WP_Meta_Query concerning paging information.
|
* Fixed the bug for 'SQL_CALC_FOUND_ROW' statement. This is for the main query, WP_Query class and WP_Meta_Query concerning paging information.
|
||||||
* Fixed the bug that the back quote in the comments was removed.
|
* Fixed the bug that the back quote in the comments was removed.
|
||||||
|
|
Loading…
Reference in New Issue