Skip to content

Commit c08d7e3

Browse files
Remove Azure SQL Edge support from sqlcmd create command
Co-authored-by: dlevy-msft-sql <[email protected]>
1 parent 04b2cf8 commit c08d7e3

7 files changed

Lines changed: 4 additions & 144 deletions

File tree

.github/copilot-instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ When adding new commands:
147147

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

152152
## Localization
153153

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ The Homebrew package manager may be used on Linux and Windows Subsystem for Linu
5555
| --------------------- | --------------------- |
5656
| `brew install sqlcmd` | `brew upgrade sqlcmd` |
5757

58-
## Use sqlcmd to create local SQL Server and Azure SQL Edge instances
58+
## Use sqlcmd to create local SQL Server instances
5959

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

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

cmd/modern/root/install.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,11 @@ func (c *Install) DefineCommand(...cmdparser.CommandOptions) {
2626
}
2727

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

3333
return []cmdparser.Command{
3434
cmdparser.New[*install.Mssql](dependencies),
35-
cmdparser.New[*install.Edge](dependencies),
3635
}
3736
}

cmd/modern/root/install/edge.go

Lines changed: 0 additions & 46 deletions
This file was deleted.

cmd/modern/root/install/edge/get-tags.go

Lines changed: 0 additions & 41 deletions
This file was deleted.

cmd/modern/root/install/edge/get-tags_test.go

Lines changed: 0 additions & 14 deletions
This file was deleted.

cmd/modern/root/install/edge_test.go

Lines changed: 0 additions & 38 deletions
This file was deleted.

0 commit comments

Comments
 (0)