Skip to main content

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

ArgumentDescription
table TableCreates 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.