From fce14e92f61a85292924a7b4c8ce6878d6b5bc53 Mon Sep 17 00:00:00 2001 From: kenjis Date: Thu, 18 Jan 2024 20:28:59 +0900 Subject: [PATCH] docs: make it clear that :: can be used on Postgre --- user_guide_src/source/database/query_builder.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_guide_src/source/database/query_builder.rst b/user_guide_src/source/database/query_builder.rst index 9ca77a134ed2..285552a60192 100755 --- a/user_guide_src/source/database/query_builder.rst +++ b/user_guide_src/source/database/query_builder.rst @@ -1125,7 +1125,7 @@ The first parameter is an associative array of values, the second parameter is t As a result, PostgreSQL may generate SQL errors if the column type is not specified. In that case, specify the column name and its type as ``::`` (e.g., ``updated_at::TIMESTAMP``). This feature - can be used since v4.4.5. + can be used since v4.4.5 and only for ``updateBatch()`` on PostgreSQL. .. literalinclude:: query_builder/123.php