feature/qnode

This commit is contained in:
dapan1121 2022-03-29 08:55:22 +08:00
parent f867538446
commit d1102c5f96
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ typedef struct SQueryExplainRowInfo {
} SQueryExplainRowInfo;
#define QUERY_EXPLAIN_NEWLINE(_format, ...) tlen = snprintf(tbuf + tlen, QUERY_EXPLAIN_MAX_RES_LEN - tlen, _format, __VA_ARGS__)
#define QUERY_EXPLAIN_NEWLINE(_format, ...) tlen = snprintf(tbuf, QUERY_EXPLAIN_MAX_RES_LEN, _format, __VA_ARGS__)
#define QUERY_EXPLAIN_APPEND(_format, ...) tlen += snprintf(tbuf + tlen, QUERY_EXPLAIN_MAX_RES_LEN - tlen, _format, __VA_ARGS__)