Skip to content

Commit 72ae5cf

Browse files
committed
refactor: Address performance
Very minor pre-allocation change
1 parent 0eb4c08 commit 72ae5cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/core/restrictions_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,15 +95,15 @@ var example_schema = Schema{
9595
}
9696

9797
func get_table_names(_input Schema) []string {
98-
var output []string
98+
output := []string{}
9999
for _, table := range _input.Tables {
100100
output = append(output, table.Name)
101101
}
102102
return output
103103
}
104104

105105
func get_column_names(_input Table) []string {
106-
var output []string
106+
output := []string{}
107107
for _, column := range _input.Columns {
108108
output = append(output, column.Name)
109109
}

0 commit comments

Comments
 (0)