Xuefeng Tan

Results 34 comments of Xuefeng Tan

@wild-River2016 请使用如下代码进行测试 ```go package main import ( "database/sql" "fmt" "time" _ "github.com/taosdata/driver-go/v2/taosSql" ) func main() { db, err := sql.Open("taosSql", "root:taosdata@tcp(localhost:6030)/") if err != nil { panic(err) } defer db.Close()...

@ZHOUAXING927 这个是为兼容之前设计,需要手动加上单引号

@ZHOUAXING927 只有字符类型需要加单引号,其他加单引号会语法错误

@tcy110 请使用如下 yaml ``` apiVersion: apps/v1 kind: Deployment metadata: name: "adapter" namespace: monitoring labels: app: "adapter" spec: replicas: 1 selector: matchLabels: app: "adapter" template: metadata: name: "adapter" labels: app: "adapter"...

@ryanbooz since both the generation conditions and time ranges use random functions, different db targets obtain time ranges and generate conditions in different orders in the same query scenario, resulting...