removedInput schema / $defs / RunQueryInput
Removed value: -{
- "additionalProperties": false,
- "properties": {
- "limit": {
- "default": 100,
- "description": "返回行数上限(客户端截断)",
- "maximum": 1000,
- "minimum": 1,
- "title": "Limit",
- "type": "integer"
- },
- "response_format": {
- "$ref": "#/$defs/ResponseFormat",
- "default": "markdown"
- },
- "schema": {
- "description": "库名",
- "title": "Schema",
- "type": "string"
- },
- "source_id": {
- "description": "数据源 ID",
- "title": "Source Id",
- "type": "string"
- },
- "sql": {
- "description": "查询 SQL(仅 SELECT,不修改目标库数据)",
- "title": "Sql",
- "type": "string"
- }
- },
- "required": [
- "source_id",
- "schema",
- "sql"
- ],
- "title": "RunQueryInput",
- "type": "object"
-}
addedInput schema / properties / limit
Added value: +{
+ "default": 100,
+ "description": "返回行数上限(客户端截断)",
+ "maximum": 1000,
+ "minimum": 1,
+ "title": "Limit",
+ "type": "integer"
+}
removedInput schema / properties / params
Removed value: -{
- "$ref": "#/$defs/RunQueryInput"
-}
addedInput schema / properties / response_format
Added value: +{
+ "$ref": "#/$defs/ResponseFormat",
+ "default": "markdown"
+}
addedInput schema / properties / schema
Added value: +{
+ "description": "库名",
+ "title": "Schema",
+ "type": "string"
+}
addedInput schema / properties / source_id
Added value: +{
+ "description": "数据源 ID",
+ "title": "Source Id",
+ "type": "string"
+}
addedInput schema / properties / sql
Added value: +{
+ "description": "查询 SQL(仅 SELECT,不修改目标库数据)",
+ "title": "Sql",
+ "type": "string"
+}
changedInput schema / required
Previous value: -[
- "params"
-]New value: +[
+ "source_id",
+ "schema",
+ "sql"
+]