Added icon for rows (#9535)

This commit is contained in:
AdRiley 2024-03-25 16:52:23 +00:00 committed by GitHub
parent 22a2c208c0
commit 64f67d1ad8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -1104,7 +1104,8 @@ type DB_Table
Array_Proxy.new self.internal_columns.length i->
self.internal_columns.at i . name
## Returns a vector of rows contained in this table.
## ICON select_row
Returns a vector of rows contained in this table.
In the database backend, it first materializes the table to in-memory.

View File

@ -1814,7 +1814,8 @@ type Table
Array_Proxy.new self.java_table.getColumns.length i->
self.java_table.getColumns.at i . getName
## Returns a vector of rows contained in this table.
## ICON select_row
Returns a vector of rows contained in this table.
In the database backend, it first materializes the table to in-memory.