Assert Equal Table

../../../../../_images/assert_equal.svg
class node_assertequaltable.AssertEqualTable[source]

Compare two incoming tables and raise an error if they differ.

Inputs:
table1 : table

Table A

table2 : table

Table B

Outputs:
out : table

Output Table

Configuration:
Compare column order

Differing column order will trigger error

Compare column attributes

Differing column attributes will trigger error

Compare table names

Differing table name will trigger error

Compare table attributes

Differing table attributes will trigger error

Approximate comparison of floats

If any arithemtics is invovled floats should probably be compared approximately.

Relative tolerance

Floats are considered unequal if the relative difference between them is larger than this value.

Absolute tolerance

Floats are considered unequal if the absolute difference between them is larger than this value.