Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ When adding new commands:

The project supports creating SQL Server instances using Docker or Podman:
- Container management is in `internal/container/`
- Supports SQL Server and Azure SQL Edge images
- Supports SQL Server images

## Localization

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ The Homebrew package manager may be used on Linux and Windows Subsystem for Linu
| --------------------- | --------------------- |
| `brew install sqlcmd` | `brew upgrade sqlcmd` |

## Use sqlcmd to create local SQL Server and Azure SQL Edge instances
## Use sqlcmd to create local SQL Server instances

Use `sqlcmd` to create SQL Server and Azure SQL Edge instances using a local container runtime (e.g. [Docker][] or [Podman][])
Use `sqlcmd` to create SQL Server instances using a local container runtime (e.g. [Docker][] or [Podman][])

### Create SQL Server instance using local container runtime and connect using Azure Data Studio

Expand Down
3 changes: 1 addition & 2 deletions cmd/modern/root/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,11 @@ func (c *Install) DefineCommand(...cmdparser.CommandOptions) {
}

// SubCommands sets up the sub-commands for `sqlcmd install` such as
// `sqlcmd install mssql` and `sqlcmd install azsql-edge`
// `sqlcmd install mssql`
func (c *Install) SubCommands() []cmdparser.Command {
dependencies := c.Dependencies()

return []cmdparser.Command{
cmdparser.New[*install.Mssql](dependencies),
cmdparser.New[*install.Edge](dependencies),
}
}
46 changes: 0 additions & 46 deletions cmd/modern/root/install/edge.go

This file was deleted.

41 changes: 0 additions & 41 deletions cmd/modern/root/install/edge/get-tags.go

This file was deleted.

14 changes: 0 additions & 14 deletions cmd/modern/root/install/edge/get-tags_test.go

This file was deleted.

38 changes: 0 additions & 38 deletions cmd/modern/root/install/edge_test.go

This file was deleted.

2 changes: 1 addition & 1 deletion cmd/modern/root/uninstall_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func TestUninstallWithUserDbPresent(t *testing.T) {

cmdparser.TestSetup(t)

cmdparser.TestCmd[*install.Edge](
cmdparser.TestCmd[*install.Mssql](
fmt.Sprintf(
`--accept-eula --port 1500 --errorlog-wait-line "Hello from Docker!" --registry %v --repo %v`,
registry,
Expand Down
Loading
Loading