Browse Source

修改bug

yjp 9 months ago
parent
commit
49be13bdca
1 changed files with 1 additions and 1 deletions
  1. 1 1
      client/raw_sql.go

+ 1 - 1
client/raw_sql.go

@@ -33,7 +33,7 @@ func (c *Client) ExecuteRawSql(token string, baseUrl string,
 		}
 
 		typedValueReflectValueElem := reflectutils.PointerValueElem(typedValueReflectValue)
-		values = append(values, map[string]any{
+		rawSqlValues = append(rawSqlValues, map[string]any{
 			"kind":  typedValueReflectValueElem.Kind(),
 			"value": typedValueReflectValueElem.Interface(),
 		})