Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix field type list for "Field calculator", "Advanced Python field calculator" and "Add field to attributes table" algs #9262

Merged
merged 1 commit into from
Sep 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 32 additions & 9 deletions docs/user_manual/processing_algs/qgis/vectortable.rst
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,17 @@ Parameters
Default: 0
- Type of the new field. You can choose between:

* 0 --- Integer
* 1 --- Float
* 2 --- String
* 0 --- Integer (32 bit)
* 1 --- Decimal (double)
* 2 --- Text (string)
* 3 --- Boolean
* 4 --- Date
* 5 --- Time
* 6 --- Date & Time
* 7 --- Binary Object (BLOB)
* 8 --- String List
* 9 --- Integer List
* 10 --- Decimal (double) List

* - **Field length**
- ``FIELD_LENGTH``
Expand Down Expand Up @@ -457,9 +465,17 @@ Parameters
Default: 0
- Type of the new field. One of:

* 0 --- Integer
* 1 --- Float
* 2 --- String
* 0 --- Integer (32 bit)
* 1 --- Decimal (double)
* 2 --- Text (string)
* 3 --- Boolean
* 4 --- Date
* 5 --- Time
* 6 --- Date & Time
* 7 --- Binary Object (BLOB)
* 8 --- String List
* 9 --- Integer List
* 10 --- Decimal (double) List

* - **Field length**
- ``FIELD_LENGTH``
Expand Down Expand Up @@ -790,10 +806,17 @@ Parameters
Default: 0
- The type of the field. One of:

* 0 --- Float
* 1 --- Integer
* 2 --- String
* 0 --- Decimal (double)
* 1 --- Integer (32 bit)
* 2 --- Text (string)
* 3 --- Date
* 4 --- Time
* 5 --- Date & Time
* 6 --- Boolean
* 7 --- Binary Object (BLOB)
* 8 --- String List
* 9 --- Integer List
* 10 --- Decimal (double) List

* - **Output field width**
- ``FIELD_LENGTH``
Expand Down
Loading