You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Option `Index` can be specified to generate index accessers, and multiple indexes are comma-separated.
489
-
There are two kinds of indexes in tableau: one is **single-column index**, and another is **multi-column index** (aka composite index).
490
+
Option `Index` can be specified to generate index accessers, and multiple
491
+
indexes are comma-separated. There are two kinds of indexes in tableau:
492
+
one is **single-column index**, and another is **multi-column index**
493
+
(aka composite index).
490
494
491
495
If you set `Index` appropriately, then tableau loader plugins will generate index APIs:
492
496
@@ -546,7 +550,11 @@ Example: two worksheets *ItemConf* and *ShopConf* in HelloWorld.xlsx:
546
550
547
551
Format: `Column<ColumnX,ColumnY,...>@IndexName`.
548
552
549
-
The sign `@` is the separator between column name and index name. if `IndexName` is not set, it will be this column’s parent struct type name. One or more indexes can be specified by comma-separated rule. The columns in the angle brackets `<>` specify the sorting columns which the index sort by.
553
+
The sign `@` is the separator between column name and index name. if
554
+
`IndexName` is not set, it will be this column’s parent struct type name.
555
+
One or more indexes can be specified by comma-separated rule. The columns in
556
+
the angle brackets `<>` specify the sorting columns, which the **result array**
Multi-column index (or composite index) is composed of **multiple columns in the same struct** (in list or map) to increase query speed.
565
573
566
-
The sign `@` is the separator between enclosed column names by parentheses and index name. if `IndexName` is not set, it will be this column’s parent struct type name. One or more indexes can be specified by comma-separated rule. The columns in the angle brackets `<>` specify the sorting columns which the index sort by.
574
+
The sign `@` is the separator between enclosed column names by parentheses and
575
+
index name. If `IndexName` is not set, it will be this column’s parent struct
576
+
type name. One or more indexes can be specified by comma-separated rule. The
577
+
columns in the angle brackets `<>` specify the sorting columns, which the
0 commit comments