( queryKey: QueryKey, parameters: ShowCreateStatementParameters, requestOptions?: RequestInit, )
| 51 | } |
| 52 | |
| 53 | export function fetchShowCreate( |
| 54 | queryKey: QueryKey, |
| 55 | parameters: ShowCreateStatementParameters, |
| 56 | requestOptions?: RequestInit, |
| 57 | ) { |
| 58 | return executeSqlV2({ |
| 59 | queries: buildShowCreateStatement(parameters).compile(queryBuilder), |
| 60 | queryKey, |
| 61 | requestOptions, |
| 62 | }); |
| 63 | } |
no test coverage detected