Minor - add executedQuery field (#23627)

* add executedQuery field

* Update generated TypeScript types

* Trigger CI

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Tomas Montiel Prieto 2025-10-01 15:10:31 +02:00 committed by GitHub
parent 5da2d32b34
commit e6edd3c760
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 12 additions and 0 deletions

View File

@ -37,6 +37,10 @@
"results": {
"description": "Results of the query execution",
"$ref": "../../data/table.json#/definitions/tableData"
},
"executedQuery": {
"description": "The actual query that was executed (may be transpiled or modified from the original)",
"type": "string"
}
},
"additionalProperties": false

View File

@ -22,6 +22,10 @@ export interface QueryRunnerResponse {
* Detailed error log in case of failure
*/
errorLog?: string;
/**
* The actual query that was executed (may be transpiled or modified from the original)
*/
executedQuery?: string;
/**
* Error message in case of failure
*/

View File

@ -4799,6 +4799,10 @@ export interface TestConnectionResult {
* Detailed error log in case of failure
*/
errorLog?: string;
/**
* The actual query that was executed (may be transpiled or modified from the original)
*/
executedQuery?: string;
}
export interface ReverseIngestionOperationResult {