Merge branch '3.0' into feature/TD-14481-3.0
This commit is contained in:
commit
c456128623
|
@ -1,10 +1,10 @@
|
|||
---
|
||||
title: TDengine Command Line (CLI)
|
||||
sidebar_label: TDengine CLI
|
||||
title: TDengine Command Line Interface (CLI)
|
||||
sidebar_label: Command Line Interface
|
||||
description: Instructions and tips for using the TDengine CLI
|
||||
---
|
||||
|
||||
The TDengine command-line application (hereafter referred to as `TDengine CLI`) is the simplest way for users to manipulate and interact with TDengine instances.
|
||||
The TDengine command-line interface (hereafter referred to as `TDengine CLI`) is the simplest way for users to manipulate and interact with TDengine instances.
|
||||
|
||||
## Installation
|
||||
|
||||
|
|
|
@ -187,9 +187,8 @@ class MockCatalogServiceImpl {
|
|||
// number of backward fills
|
||||
#define NOB(n) ((n) % 2 ? (n) / 2 + 1 : (n) / 2)
|
||||
// center aligned
|
||||
#define CA(n, s) \
|
||||
std::setw(NOF((n) - (s).length())) << "" << (s) << std::setw(NOB((n) - (s).length())) << "" \
|
||||
<< "|"
|
||||
#define CA(n, s) std::setw(NOF((n) - int((s).length()))) << "" << (s) \
|
||||
<< std::setw(NOB((n) - int((s).length()))) << "" << "|"
|
||||
// string field length
|
||||
#define SFL 20
|
||||
// string field header
|
||||
|
|
Loading…
Reference in New Issue