diff options
author | Andrey Andreev <narf@devilix.net> | 2014-12-11 15:27:15 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-12-11 15:27:15 +0100 |
commit | 4a587f5bf3d7c26112e0cf8f8d54299784ce60d0 (patch) | |
tree | 6db8f901427dbf2a41b6eb869d2c380f87355829 /user_guide_src | |
parent | 75818dfe84f9c6e3de0cb798b77bf8e68cd7f435 (diff) |
Add method chaining support to QB cache methods
Diffstat (limited to 'user_guide_src')
-rw-r--r-- | user_guide_src/source/changelog.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/user_guide_src/source/changelog.rst b/user_guide_src/source/changelog.rst index 431016d6a..dc47fd347 100644 --- a/user_guide_src/source/changelog.rst +++ b/user_guide_src/source/changelog.rst @@ -188,6 +188,7 @@ Release Date: Not Released - Changed ``offset()`` to ignore empty values instead of always casting to integer. - Methods ``insert_batch()`` and ``update_batch()`` now return an integer representing the number of rows affected by them. - Methods ``where()``, ``or_where()``, ``having()`` and ``or_having()`` now convert trailing ``=`` and ``<>``, ``!=`` SQL operators to ``IS NULL`` and ``IS NOT NULL`` respectively when the supplied comparison value is ``NULL``. + - Added support for method chaining in query cache methods ``start_cache()``, ``stop_cache()``, ``flush_cache()``. - :doc:`Database Results <database/results>` changes include: |