Skip to content

Commit 57a293e

Browse files
authored
fix: Remove fmt.Println from sqlite unpackArray (#21122)
#### Summary Following up on #21102 There was a leftover from the debugging session that got merged into the release. This removes a `fmt.Println(...)` left in the `unpackArray` function from the SQLite plugin, used when sending DeleteRecord messages.
1 parent 75cd5f3 commit 57a293e

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

plugins/destination/sqlite/client/delete.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package client
22

33
import (
44
"context"
5-
"fmt"
65
"reflect"
76
"strings"
87

@@ -83,7 +82,6 @@ func extractPredicateValues(where message.PredicateGroups) ([]any, error) {
8382

8483
func unpackArray(s any) []any {
8584
v := reflect.ValueOf(s)
86-
fmt.Println(v.Kind(), v.Len())
8785
r := make([]any, v.Len())
8886
for i := range v.Len() {
8987
r[i] = v.Index(i).Interface()

0 commit comments

Comments
 (0)