(ctx context.Context)
| 48 | } |
| 49 | |
| 50 | func (t *QuerySQL) CheckAccess(ctx context.Context) (bool, error) { |
| 51 | return checkDeveloperAccess(ctx, t.Runtime, false) |
| 52 | } |
| 53 | |
| 54 | func (t *QuerySQL) Handler(ctx context.Context, args *QuerySQLArgs) (*QuerySQLResult, error) { |
| 55 | if args.SQL == "" { |
nothing calls this directly
no test coverage detected