Skip to content

Commit

Permalink
rephrase hidden documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
robfrank committed Jan 3, 2025
1 parent 1cd975f commit b579230
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/main/asciidoc/sql/SQL-Alter-Property.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ ALTER PROPERTY <type-name>.<property-name> <attribute-name> <attribute-value> [C
** `mandatory <true|false>` If true, the property must be present. Default is false
** `notnull <true|false>` If true, the property, if present, cannot be null. Default is false
** `readonly <true|false>` If true, the property cannot be changed after the creation of the record. Default is false
** `hidden <true|false>` If true, the property is not added to the result set when using * in projections such as in `SELECT * FROM`; it is included when `SELECT FROM` is used or if the hidden property is part of the projection list .
** `min <number|string>` Defines the minimum value for this property.
For number types it is the minimum number as a value.
For strings, it represents the minimum number of characters.
Expand Down
2 changes: 1 addition & 1 deletion src/main/asciidoc/sql/SQL-Create-Property.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Default is *false*
Default is *false*
** `readonly &lt;true|false&gt;` If true, the property cannot be changed after the creation of the record.
Default is *false*
** `hidden &lt;true|false&gt;` If true, the property is not added to the result set when using `SELECT * FROM`; it is included if `SELECT FROM` or if the hidden property is part of the projection list .
** `hidden &lt;true|false&gt;` If true, the property is not added to the result set when using * in projections such as in `SELECT * FROM`; it is included when `SELECT FROM` is used or if the hidden property is part of the projection list .
Default is *false*
** `min &lt;number|string&gt;` Defines the minimum value for this property.
For number types it is the minimum number as a value.
Expand Down

0 comments on commit b579230

Please sign in to comment.