Add expression alias (#10067)

We call formulas expressions so having expression as well as formula makes sense as an alias.
This commit is contained in:
AdRiley 2024-05-24 17:13:00 +03:00 committed by GitHub
parent 204fb3e9cb
commit adfe2dbab4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -893,7 +893,7 @@ type DB_Table
new_ctx = self.context.set_limit max_rows
self.updated_context new_ctx
## ALIAS add column, formula, new column, update column
## ALIAS add column, expression, formula, new column, update column
GROUP Standard.Base.Values
ICON dataframe_map_column
Sets the column value at the given name.

View File

@ -1648,7 +1648,7 @@ type Table
add_row_number self (name:Text="Row") (from:Integer=1) (step:Integer=1) (group_by:(Vector | Text | Integer | Regex)=[]) (order_by:(Vector | Text)=[]) (on_problems:Problem_Behavior=Problem_Behavior.Report_Warning) =
Add_Row_Number.add_row_number self name from step group_by order_by on_problems
## ALIAS add column, formula, new column, update column
## ALIAS add column, expression, formula, new column, update column
GROUP Standard.Base.Values
ICON dataframe_map_column
Sets the column value at the given name.