InMemoryTable
InMemoryTable Function
Stores a table as in-memory representation. Optimizes performance at the expense of memory. Useful only when combined with other transformations.
Syntax
InMemoryTable(table Table)
Arguments
| Argument | Description |
|---|---|
table Table | Creates an in-memory representation of Table. |
Examples:
RemoveDuplicateRows(InMemoryTable([[FusionTestTable]]), null)
Stored the table FusionTestTable as in-memory representation and used it for RemoveDuplicateRows transform Function.