We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f470bb5 commit 9a153d1Copy full SHA for 9a153d1
sqle/driver/v2/util.go
@@ -302,7 +302,7 @@ func ConvertProtoSqlObjectTypeToDriver(objectType protoV2.SQLObjectType) (SQLObj
302
}
303
304
func ConvertDriverSQLOpsResponseToProto(sqlOps []*SQLObjectOps) (*protoV2.GetSQLOpResponse, error) {
305
- var sqlOpList []*protoV2.SQLOps
+ sqlOpList := make([]*protoV2.SQLOps, 0, len(sqlOps))
306
for _, sqlOp := range sqlOps {
307
308
var objectOpList []*protoV2.SQLObjectOp
0 commit comments