console/query: fix InIfBoundary/OutIfBoundary as dimensions

Fix #1066
This commit is contained in:
Vincent Bernat
2024-02-01 23:34:22 +01:00
parent 8ad3492579
commit 8df8624a24
3 changed files with 6 additions and 0 deletions

View File

@@ -92,6 +92,9 @@ func TestQueryColumnSQLSelect(t *testing.T) {
}, {
Input: schema.ColumnDstMAC,
Expected: `MACNumToString(DstMAC)`,
}, {
Input: schema.ColumnInIfBoundary,
Expected: `toString(InIfBoundary)`,
}, {
Input: schema.ColumnMPLSLabels,
Expected: `arrayStringConcat(MPLSLabels, ' ')`,