Skip to content

Commit

Permalink
Fix field list for some "Vector table" algs
Browse files Browse the repository at this point in the history
- Add field to attributes table native:addfieldtoattributestable
- Advanced Python field calculator qgis:advancedpythonfieldcalculator
- Field calculator native:fieldcalculator
  • Loading branch information
agiudiceandrea authored and DelazJ committed Sep 15, 2024
1 parent bbdabcc commit 4ed1602
Showing 1 changed file with 32 additions and 9 deletions.
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

0 comments on commit 4ed1602

Please sign in to comment.