未验证 提交 49a29885 编写于 作者: S Shengliang Guan 提交者: GitHub

Merge pull request #18433 from taosdata/fix/TD-20659-2.6

fix(shell): add help command and fixed fields auto fill
...@@ -33,5 +33,7 @@ void shellAutoExit(); ...@@ -33,5 +33,7 @@ void shellAutoExit();
// callback autotab module // callback autotab module
void callbackAutoTab(char* sqlstr, TAOS* pSql, bool usedb); void callbackAutoTab(char* sqlstr, TAOS* pSql, bool usedb);
// show all commands help
void showHelp();
#endif #endif
...@@ -1438,25 +1438,37 @@ bool matchSelectQuery(TAOS * con, Command * cmd) { ...@@ -1438,25 +1438,37 @@ bool matchSelectQuery(TAOS * con, Command * cmd) {
} }
// if is input create fields or tags area, return true // if is input create fields or tags area, return true
bool isCreateFieldsArea(char * p) { bool isCreateFieldsArea(char* p) {
char * left = strrchr(p, '('); // put to while, support like create table st(ts timestamp, bin1 binary(16), bin2 + blank + TAB
if (left == NULL) { char* p1 = strdup(p);
// like 'create table st' bool ret = false;
return false; while (1) {
} char* left = strrchr(p1, '(');
if (left == NULL) {
// like 'create table st'
ret = false;
break;
}
char * right = strrchr(p, ')'); char* right = strrchr(p1, ')');
if(right == NULL) { if (right == NULL) {
// like 'create table st( ' // like 'create table st( '
return true; ret = true;
} break;
}
if (left > right) { if (left > right) {
// like 'create table st( ts timestamp, age int) tags(area ' // like 'create table st( ts timestamp, age int) tags(area '
return true; ret = true;
break;
}
// set string end by small for next strrchr search
*left = 0;
} }
free(p1);
return false; return ret;
} }
bool matchCreateTable(TAOS * con, Command * cmd) { bool matchCreateTable(TAOS * con, Command * cmd) {
......
...@@ -216,6 +216,14 @@ int32_t shellRunCommand(TAOS* con, char* command) { ...@@ -216,6 +216,14 @@ int32_t shellRunCommand(TAOS* con, char* command) {
return 0; return 0;
} }
// add help or help;
#ifndef WINDOWS
if (strcmp(command, "help") == 0 || strcmp(command, "help;") == 0) {
showHelp();
return 0;
}
#endif
/* Update the history vector. */ /* Update the history vector. */
if (history.hstart == history.hend || if (history.hstart == history.hend ||
history.hist[(history.hend + MAX_HISTORY_SIZE - 1) % MAX_HISTORY_SIZE] == NULL || history.hist[(history.hend + MAX_HISTORY_SIZE - 1) % MAX_HISTORY_SIZE] == NULL ||
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册