mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-07 22:44:08 +00:00
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:
parent
5da2d32b34
commit
e6edd3c760
@ -37,6 +37,10 @@
|
|||||||
"results": {
|
"results": {
|
||||||
"description": "Results of the query execution",
|
"description": "Results of the query execution",
|
||||||
"$ref": "../../data/table.json#/definitions/tableData"
|
"$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
|
"additionalProperties": false
|
||||||
|
|||||||
@ -22,6 +22,10 @@ export interface QueryRunnerResponse {
|
|||||||
* Detailed error log in case of failure
|
* Detailed error log in case of failure
|
||||||
*/
|
*/
|
||||||
errorLog?: string;
|
errorLog?: string;
|
||||||
|
/**
|
||||||
|
* The actual query that was executed (may be transpiled or modified from the original)
|
||||||
|
*/
|
||||||
|
executedQuery?: string;
|
||||||
/**
|
/**
|
||||||
* Error message in case of failure
|
* Error message in case of failure
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -4799,6 +4799,10 @@ export interface TestConnectionResult {
|
|||||||
* Detailed error log in case of failure
|
* Detailed error log in case of failure
|
||||||
*/
|
*/
|
||||||
errorLog?: string;
|
errorLog?: string;
|
||||||
|
/**
|
||||||
|
* The actual query that was executed (may be transpiled or modified from the original)
|
||||||
|
*/
|
||||||
|
executedQuery?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ReverseIngestionOperationResult {
|
export interface ReverseIngestionOperationResult {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user