[TS-263]<fix>: make response of alter consistent with create and drop
This commit is contained in:
parent
23fc716361
commit
e5f3730204
|
@ -17,6 +17,7 @@
|
||||||
#define TDENGINE_HTTP_UTIL_H
|
#define TDENGINE_HTTP_UTIL_H
|
||||||
|
|
||||||
bool httpCheckUsedbSql(char *sql);
|
bool httpCheckUsedbSql(char *sql);
|
||||||
|
bool httpCheckAlterSql(char *sql);
|
||||||
void httpTimeToString(int32_t t, char *buf, int32_t buflen);
|
void httpTimeToString(int32_t t, char *buf, int32_t buflen);
|
||||||
|
|
||||||
bool httpUrlMatch(HttpContext *pContext, int32_t pos, char *cmp);
|
bool httpUrlMatch(HttpContext *pContext, int32_t pos, char *cmp);
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
#define _DEFAULT_SOURCE
|
#define _DEFAULT_SOURCE
|
||||||
#include "os.h"
|
#include "os.h"
|
||||||
#include "tglobal.h"
|
#include "tglobal.h"
|
||||||
|
#include "tsclient.h"
|
||||||
#include "httpLog.h"
|
#include "httpLog.h"
|
||||||
#include "httpJson.h"
|
#include "httpJson.h"
|
||||||
#include "httpRestHandle.h"
|
#include "httpRestHandle.h"
|
||||||
|
@ -62,13 +63,21 @@ void restStartSqlJson(HttpContext *pContext, HttpSqlCmd *cmd, TAOS_RES *result)
|
||||||
httpJsonItemToken(jsonBuf);
|
httpJsonItemToken(jsonBuf);
|
||||||
httpJsonToken(jsonBuf, JsonArrStt);
|
httpJsonToken(jsonBuf, JsonArrStt);
|
||||||
|
|
||||||
|
SSqlObj *pObj = (SSqlObj *) result;
|
||||||
|
bool isAlterSql = (pObj->sqlstr == NULL) ? false : httpCheckAlterSql(pObj->sqlstr);
|
||||||
|
|
||||||
if (num_fields == 0) {
|
if (num_fields == 0) {
|
||||||
httpJsonItemToken(jsonBuf);
|
httpJsonItemToken(jsonBuf);
|
||||||
httpJsonString(jsonBuf, REST_JSON_AFFECT_ROWS, REST_JSON_AFFECT_ROWS_LEN);
|
httpJsonString(jsonBuf, REST_JSON_AFFECT_ROWS, REST_JSON_AFFECT_ROWS_LEN);
|
||||||
} else {
|
} else {
|
||||||
for (int32_t i = 0; i < num_fields; ++i) {
|
if (isAlterSql == true) {
|
||||||
httpJsonItemToken(jsonBuf);
|
httpJsonItemToken(jsonBuf);
|
||||||
httpJsonString(jsonBuf, fields[i].name, (int32_t)strlen(fields[i].name));
|
httpJsonString(jsonBuf, REST_JSON_AFFECT_ROWS, REST_JSON_AFFECT_ROWS_LEN);
|
||||||
|
} else {
|
||||||
|
for (int32_t i = 0; i < num_fields; ++i) {
|
||||||
|
httpJsonItemToken(jsonBuf);
|
||||||
|
httpJsonString(jsonBuf, fields[i].name, (int32_t)strlen(fields[i].name));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -99,8 +108,14 @@ void restStartSqlJson(HttpContext *pContext, HttpSqlCmd *cmd, TAOS_RES *result)
|
||||||
httpJsonItemToken(jsonBuf);
|
httpJsonItemToken(jsonBuf);
|
||||||
httpJsonToken(jsonBuf, JsonArrStt);
|
httpJsonToken(jsonBuf, JsonArrStt);
|
||||||
|
|
||||||
httpJsonItemToken(jsonBuf);
|
if (isAlterSql == true) {
|
||||||
httpJsonString(jsonBuf, fields[i].name, (int32_t)strlen(fields[i].name));
|
httpJsonItemToken(jsonBuf);
|
||||||
|
httpJsonString(jsonBuf, REST_JSON_AFFECT_ROWS, REST_JSON_AFFECT_ROWS_LEN);
|
||||||
|
} else {
|
||||||
|
httpJsonItemToken(jsonBuf);
|
||||||
|
httpJsonString(jsonBuf, fields[i].name, (int32_t)strlen(fields[i].name));
|
||||||
|
}
|
||||||
|
|
||||||
httpJsonItemToken(jsonBuf);
|
httpJsonItemToken(jsonBuf);
|
||||||
httpJsonInt(jsonBuf, fields[i].type);
|
httpJsonInt(jsonBuf, fields[i].type);
|
||||||
httpJsonItemToken(jsonBuf);
|
httpJsonItemToken(jsonBuf);
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
#include "httpResp.h"
|
#include "httpResp.h"
|
||||||
#include "httpSql.h"
|
#include "httpSql.h"
|
||||||
#include "httpUtil.h"
|
#include "httpUtil.h"
|
||||||
|
#include "ttoken.h"
|
||||||
|
|
||||||
bool httpCheckUsedbSql(char *sql) {
|
bool httpCheckUsedbSql(char *sql) {
|
||||||
if (strstr(sql, "use ") != NULL) {
|
if (strstr(sql, "use ") != NULL) {
|
||||||
|
@ -29,6 +30,17 @@ bool httpCheckUsedbSql(char *sql) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool httpCheckAlterSql(char *sql) {
|
||||||
|
int32_t index = 0;
|
||||||
|
|
||||||
|
do {
|
||||||
|
SStrToken t0 = tStrGetToken(sql, &index, false);
|
||||||
|
if (t0.type != TK_LP) {
|
||||||
|
return t0.type == TK_ALTER;
|
||||||
|
}
|
||||||
|
} while (1);
|
||||||
|
}
|
||||||
|
|
||||||
void httpTimeToString(int32_t t, char *buf, int32_t buflen) {
|
void httpTimeToString(int32_t t, char *buf, int32_t buflen) {
|
||||||
memset(buf, 0, (size_t)buflen);
|
memset(buf, 0, (size_t)buflen);
|
||||||
char ts[32] = {0};
|
char ts[32] = {0};
|
||||||
|
|
Loading…
Reference in New Issue