|
97 | 97 | curl -LsSf https://thoughtspot.github.io/cs_tools/install.py | python - --reinstall --beta v1.5.12 |
98 | 98 | ``` |
99 | 99 |
|
| 100 | + === "`cs_tools tools searchable metadata`" |
| 101 | + The `TS_SHARING_ACCESS` table previously did not identify __column level security__{ .fc-purple }, even if you |
| 102 | + used the `--include-column-access` option on the CLI. Whoops! :disappointed_relieved: |
| 103 | + |
| 104 | + __In order to accept the new data type, you can choose to issue a `DROP TABLE TS_SHARING_ACCESS` and allow __CS |
| 105 | + Tools__ to recreate it, or you can issue an `ALTER TABLE ADD COLUMN share_type VARCHAR` command.__{ .fc-red } |
| 106 | + |
100 | 107 | === "`cs_tools tools scriptability`" |
101 | 108 | This tool allows you to handle TML in bulk (exports and imports), while also encouraging strong CI/CD workflows. |
102 | 109 | Over the years, the __ThoughtSpot__ team has worked to refine the capabilities in the platform to help alleviate |
@@ -237,7 +244,7 @@ hide: |
237 | 244 | |
238 | 245 | # INSTALL A SPECIFIC VERSION OF cs_tools. |
239 | 246 | - name: Install a pinned version of CS Tools |
240 | | - run: python -m pip install "cs_tools[cli] @ https://github.com/thoughtspot/cs_tools/archive/v${{ env.CS_TOOLS_VERSION }}.zip" |
| 247 | + run: python -m pip install "cs_tools[cli] @ https://github.com/thoughtspot/cs_tools/archive/${{ env.CS_TOOLS_VERSION }}.zip" |
241 | 248 | |
242 | 249 | # ENSURE SYNCER DEPENDENCIES ARE INSTALLED. |
243 | 250 | # found in: https://github.com/thoughtspot/cs_tools/blob/master/sync/<dialect>/MANIFEST.json |
@@ -296,7 +303,7 @@ hide: |
296 | 303 | - python -m pip install --upgrade pip |
297 | 304 |
|
298 | 305 | # INSTALL A SPECIFIC VERSION OF cs_tools. |
299 | | - - python -m pip install "cs_tools[cli] @ https://github.com/thoughtspot/cs_tools/archive/v${CS_TOOLS_VERSION}.zip" |
| 306 | + - python -m pip install "cs_tools[cli] @ https://github.com/thoughtspot/cs_tools/archive/${CS_TOOLS_VERSION}.zip" |
300 | 307 |
|
301 | 308 | # ENSURE SYNCER DEPENDENCIES ARE INSTALLED. |
302 | 309 | # found in: https://github.com/thoughtspot/cs_tools/blob/master/sync/<dialect>/MANIFEST.json |
@@ -327,7 +334,7 @@ hide: |
327 | 334 |
|
328 | 335 | # CS TOOLS IS COMMAND LINE LIBRARY WRAPPING TS APIS |
329 | 336 | # https://thoughtspot.github.io/cs_tools/ |
330 | | - CS_TOOLS_VERSION: '1.6.0' |
| 337 | + CS_TOOLS_VERSION: 'v1.6.0' |
331 | 338 | CS_TOOLS_THOUGHTSPOT__URL: $(THOUGHTSPOT_URL) |
332 | 339 | CS_TOOLS_THOUGHTSPOT__USERNAME: $(THOUGHTSPOT_USERNAME) |
333 | 340 | CS_TOOLS_THOUGHTSPOT__SECRET_KEY: $(THOUGHTSPOT_SECRET_KEY) |
@@ -379,7 +386,7 @@ hide: |
379 | 386 | python -m pip install --upgrade pip |
380 | 387 |
|
381 | 388 | # INSTALL A SPECIFIC VERSION OF cs_tools |
382 | | - python -m pip install "cs_tools[cli] @ https://github.com/thoughtspot/cs_tools/archive/v$(CS_TOOLS_VERSION).zip" |
| 389 | + python -m pip install "cs_tools[cli] @ https://github.com/thoughtspot/cs_tools/archive/$(CS_TOOLS_VERSION).zip" |
383 | 390 |
|
384 | 391 | # ENSURE SYNCER DEPENDENCIES ARE INSTALLED |
385 | 392 | python -m pip install "snowflake-sqlalchemy >= 1.6.1" |
@@ -537,6 +544,7 @@ hide: |
537 | 544 | - [`tools scriptability`][cst-tools-scriptability] rewritten to align to more with the [`tools git`][cst-tools-git] interface |
538 | 545 |
|
539 | 546 | === ":bug: Bugfix" |
| 547 | + - Add `TS_SHARING_ACCESS.share_type (VARCHAR)` to [`tools searchable metadata`][cst-tools-searchable-metadata] |
540 | 548 | - `DatabaseSyncers` which follow `PUT FILE -> COPY/MERGE INTO` workflow now support column header reording / redefinition |
541 | 549 | - Column headers are now parsed appropriately on [__Excel Syncer__][cst-syncer-excel] ([#192](https://github.com/thoughtspot/cs_tools/pull/192)) |
542 | 550 | - All `DATETIME` fields in extracted data are now converted to UTC, regardless of the Cluster's timezone |
@@ -569,6 +577,7 @@ hide: |
569 | 577 | [cst-tools-assign-from-tag]: ../../generated/cli/reference.html#transfer |
570 | 578 | [cst-tools-searchable-logs]: ../../generated/cli/reference.html#audit-logs |
571 | 579 | [cst-tools-searchable-tml]: ../../generated/cli/reference.html#tml |
| 580 | +[cst-tools-searchable-metadata]: ../../generated/cli/reference.html#metadata |
572 | 581 | [cst-tools-scriptability]: ../../generated/cli/reference.html#scriptability |
573 | 582 | [cst-tools-git]: ../../generated/cli/reference.html#git |
574 | 583 | [cst-syncer-falcon]: ../../syncer/falcon |
|
0 commit comments