modify node ci example

This commit is contained in:
menshibin 2024-09-25 20:55:04 +08:00
parent 46a093c69f
commit b4348e2463
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ async function execSql() {
taosResult = await wsSql.exec('USE power', reqId++);
console.log(taosResult);
taosResult = await wsSql.exec('CREATE STABLE IF NOT EXISTS meters (_ts timestamp, current float, voltage int, phase float) TAGS (location binary(64), groupId int);', reqId++);
taosResult = await wsSql.exec('CREATE STABLE IF NOT EXISTS meters (ts timestamp, current float, voltage int, phase float) TAGS (location binary(64), groupId int);', reqId++);
console.log(taosResult);
taosResult = await wsSql.exec('DESCRIBE meters', reqId++);