Skip to content

Commit 8f407cd

Browse files
author
Tom Fleming
authoredApr 5, 2024
Merge pull request #2 from IOTechSystems/EB-4012-branch-2
EB-4012 added whereIn function and unit test
2 parents 50d8885 + 23a716d commit 8f407cd

File tree

2 files changed

+67
-0
lines changed

2 files changed

+67
-0
lines changed
 

‎strmangle.go

+27
Original file line numberDiff line numberDiff line change
@@ -573,6 +573,33 @@ func WhereClause(lq, rq string, start int, cols []string) string {
573573
return buf.String()
574574
}
575575

576+
// WhereInClause returns the where clause using start as the $ flag index
577+
// For example, if start was 2 output would be: "col IN ($2,$3)"
578+
func WhereInClause(lq, rq string, start int, cols []string, count int) string {
579+
buf := GetBuffer()
580+
defer PutBuffer(buf)
581+
582+
// Start is used as the dialect switch for $ or ?
583+
// Because Placeholders will not accept 0 as a start index, set it to 1 and set useIndexPlaceholders appropriately
584+
useIndexPlaceholders := true
585+
if start == 0 {
586+
start = 1
587+
useIndexPlaceholders = false
588+
}
589+
590+
for i, c := range cols {
591+
buf.WriteString(fmt.Sprintf(`%s%s%s IN (`, lq, c, rq))
592+
buf.WriteString(Placeholders(useIndexPlaceholders, count, start+i*count, 1))
593+
buf.WriteByte(')')
594+
595+
if i < len(cols)-1 {
596+
buf.WriteString(" AND ")
597+
}
598+
}
599+
600+
return buf.String()
601+
}
602+
576603
// WhereClauseRepeated returns the where clause repeated with OR clause using start as the $ flag index
577604
// For example, if start was 2 output would be: "(colthing=$2 AND colstuff=$3) OR (colthing=$4 AND colstuff=$5)"
578605
func WhereClauseRepeated(lq, rq string, start int, cols []string, count int) string {

‎strmangle_test.go

+40
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,46 @@ func TestSetParamNames(t *testing.T) {
349349
}
350350
}
351351

352+
func TestWhereInClause(t *testing.T) {
353+
t.Parallel()
354+
355+
tests := []struct {
356+
name string
357+
lq string
358+
rq string
359+
start int
360+
cols []string
361+
count int
362+
expected string
363+
}{
364+
{
365+
name: "Test with indexed placeholders",
366+
lq: `"`,
367+
rq: `"`,
368+
start: 1,
369+
cols: []string{"col1", "col2"},
370+
count: 2,
371+
expected: `"col1" IN ($1,$2) AND "col2" IN ($3,$4)`,
372+
},
373+
{
374+
name: "Test with question mark placeholders",
375+
lq: `"`,
376+
rq: `"`,
377+
start: 0,
378+
cols: []string{"col1", "col2"},
379+
count: 2,
380+
expected: `"col1" IN (?,?) AND "col2" IN (?,?)`,
381+
},
382+
}
383+
384+
for _, tt := range tests {
385+
result := WhereInClause(tt.lq, tt.rq, tt.start, tt.cols, tt.count)
386+
if result != tt.expected {
387+
t.Errorf("WhereInClause() = %v, want %v", result, tt.expected)
388+
}
389+
}
390+
}
391+
352392
func TestWhereClause(t *testing.T) {
353393
t.Parallel()
354394

0 commit comments

Comments
 (0)
Please sign in to comment.