1
1
package cmdutil
2
2
3
3
import (
4
- "cmp"
5
4
"fmt"
6
- "slices"
7
5
"strings"
8
6
9
7
ps "github.com/planetscale/planetscale-go/planetscale"
@@ -37,10 +35,6 @@ func ClusterSizesCompletionFunc(ch *Helper, cmd *cobra.Command, args []string, t
37
35
return nil , cobra .ShellCompDirectiveNoFileComp
38
36
}
39
37
40
- slices .SortFunc (clusterSKUs , func (a , b * ps.ClusterSKU ) int {
41
- return cmp .Compare (a .SortOrder , b .SortOrder )
42
- })
43
-
44
38
clusterSizes := make ([]cobra.Completion , 0 )
45
39
for _ , c := range clusterSKUs {
46
40
if c .Enabled && strings .Contains (c .Name , toComplete ) && c .Rate != nil && c .Name != "PS_DEV" {
@@ -51,7 +45,7 @@ func ClusterSizesCompletionFunc(ch *Helper, cmd *cobra.Command, args []string, t
51
45
}
52
46
53
47
if c .CPU != "" {
54
- description .WriteString (fmt .Sprintf (" · %s vCPU " , c .CPU ))
48
+ description .WriteString (fmt .Sprintf (" · %s vCPUs " , c .CPU ))
55
49
}
56
50
57
51
if c .Memory > 0 {
@@ -97,21 +91,17 @@ func BranchClusterSizesCompletionFunc(ch *Helper, cmd *cobra.Command, args []str
97
91
return nil , cobra .ShellCompDirectiveNoFileComp
98
92
}
99
93
100
- slices .SortFunc (clusterSKUs , func (a , b * ps.ClusterSKU ) int {
101
- return cmp .Compare (a .SortOrder , b .SortOrder )
102
- })
103
-
104
94
clusterSizes := make ([]cobra.Completion , 0 )
105
95
for _ , c := range clusterSKUs {
106
- if c .Enabled && strings .Contains (c .Name , toComplete ) && c .Rate != nil {
96
+ if c .Enabled && strings .Contains (c .Name , toComplete ) && c .Rate != nil && c . Name != "PS_DEV" {
107
97
var description strings.Builder
108
98
description .WriteString (c .DisplayName )
109
99
if * c .Rate > 0 {
110
100
description .WriteString (fmt .Sprintf (" · $%d/month" , * c .Rate ))
111
101
}
112
102
113
103
if c .CPU != "" {
114
- description .WriteString (fmt .Sprintf (" · %s vCPU " , c .CPU ))
104
+ description .WriteString (fmt .Sprintf (" · %s vCPUs " , c .CPU ))
115
105
}
116
106
117
107
if c .Memory > 0 {
0 commit comments