Skip to content

Commit c7ab91d

Browse files
authored
Fix: Apply x flag during batch parsing (#542)
1 parent 55e7675 commit c7ab91d

File tree

4 files changed

+33
-18
lines changed

4 files changed

+33
-18
lines changed

.github/workflows/golangci-lint.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
name: lint-pr-changes
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/setup-go@v3
12+
- uses: actions/setup-go@v5
1313
with:
14-
go-version: 1.18
15-
- uses: actions/checkout@v3
14+
go-version: stable
15+
- uses: actions/checkout@v4
1616
- name: golangci-lint
17-
uses: golangci/golangci-lint-action@v3
17+
uses: golangci/golangci-lint-action@v6
1818
with:
1919
version: latest
2020
only-new-issues: true

pkg/sqlcmd/batch.go

+9-4
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,20 @@ type Batch struct {
3535
linevarmap map[int]string
3636
// cmd is the set of Commands available
3737
cmd Commands
38+
// ParseVariables is a function that returns true if Next should parse variables
39+
ParseVariables batchParseVariables
3840
}
3941

4042
type batchScan func() (string, error)
4143

44+
type batchParseVariables func() bool
45+
4246
// NewBatch creates a Batch which converts runes provided by reader into SQL batches
4347
func NewBatch(reader batchScan, cmd Commands) *Batch {
4448
b := &Batch{
45-
read: reader,
46-
cmd: cmd,
49+
read: reader,
50+
cmd: cmd,
51+
ParseVariables: func() bool { return true },
4752
}
4853
b.Reset(nil)
4954
return b
@@ -125,7 +130,7 @@ parse:
125130
case b.quote != 0 || b.comment:
126131

127132
// Handle variable references
128-
case c == '$' && next == '(':
133+
case (b.ParseVariables == nil || b.ParseVariables()) && c == '$' && next == '(':
129134
vi, ok := readVariableReference(b.raw, i+2, b.rawlen)
130135
if ok {
131136
b.addVariableLocation(i, string(b.raw[i+2:vi]))
@@ -231,7 +236,7 @@ func (b *Batch) readString(r []rune, i, end int, quote rune, line uint) (int, bo
231236
for ; i < end; i++ {
232237
c, next = r[i], grab(r, i+1, end)
233238
switch {
234-
case c == '$' && next == '(':
239+
case (b.ParseVariables == nil || b.ParseVariables()) && c == '$' && next == '(':
235240
vl, ok := readVariableReference(r, i+2, end)
236241
if ok {
237242
b.addVariableLocation(i, string(r[i+2:vl]))

pkg/sqlcmd/sqlcmd.go

+1
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ func New(l Console, workingDirectory string, vars *Variables) *Sqlcmd {
103103
colorizer: color.New(false),
104104
}
105105
s.batch = NewBatch(s.scanNext, s.Cmd)
106+
s.batch.ParseVariables = func() bool { return !s.Connect.DisableVariableSubstitution }
106107
mssql.SetContextLogger(s)
107108
s.PrintError = func(msg string, severity uint8) bool {
108109
return false

pkg/sqlcmd/sqlcmd_test.go

+19-10
Original file line numberDiff line numberDiff line change
@@ -242,22 +242,31 @@ func TestGetRunnableQuery(t *testing.T) {
242242
q string
243243
}
244244
tests := []test{
245-
{"$(var1)", "v1"},
246-
{"$ (var2)", "$ (var2)"},
247-
{"select '$(VAR1) $(VAR2)' as c", "select 'v1 variable2' as c"},
248-
{" $(VAR1) ' $(VAR2) ' as $(VAR1)", " v1 ' variable2 ' as v1"},
249-
{"í $(VAR1)", "í v1"},
245+
// {"$(var1)", "v1"},
246+
// {"$ (var2)", "$ (var2)"},
247+
// {"select '$(VAR1) $(VAR2)' as c", "select 'v1 variable2' as c"},
248+
// {" $(VAR1) ' $(VAR2) ' as $(VAR1)", " v1 ' variable2 ' as v1"},
249+
// {"í $(VAR1)", "í v1"},
250+
{"select '$('", ""},
250251
}
251252
s := New(nil, "", v)
252253
for _, test := range tests {
253254
s.batch.Reset([]rune(test.raw))
254-
_, _, _ = s.batch.Next()
255255
s.Connect.DisableVariableSubstitution = false
256-
t.Log(test.raw)
257-
r := s.getRunnableQuery(test.raw)
258-
assert.Equalf(t, test.q, r, `runnableQuery for "%s"`, test.raw)
256+
_, _, err := s.batch.Next()
257+
if test.q == "" {
258+
assert.Error(t, err, "expected variable parsing error")
259+
} else {
260+
assert.NoError(t, err, "Next should have succeeded")
261+
t.Log(test.raw)
262+
r := s.getRunnableQuery(test.raw)
263+
assert.Equalf(t, test.q, r, `runnableQuery for "%s"`, test.raw)
264+
}
265+
s.batch.Reset([]rune(test.raw))
259266
s.Connect.DisableVariableSubstitution = true
260-
r = s.getRunnableQuery(test.raw)
267+
_, _, err = s.batch.Next()
268+
assert.NoError(t, err, "expected no variable parsing error")
269+
r := s.getRunnableQuery(test.raw)
261270
assert.Equalf(t, test.raw, r, `runnableQuery without variable subs for "%s"`, test.raw)
262271
}
263272
}

0 commit comments

Comments
 (0)