()
| 27 | const showExecuteButton = currentConnectionCtx?.connection && currentConnectionCtx?.database && language.toUpperCase() === "SQL"; |
| 28 | |
| 29 | const copyToClipboard = () => { |
| 30 | copy(value); |
| 31 | toast.success("Copied to clipboard"); |
| 32 | }; |
| 33 | |
| 34 | const handleExecuteQuery = () => { |
| 35 | if (!currentConnectionCtx) { |
nothing calls this directly
no outgoing calls
no test coverage detected