Skip to content

Commit ea65b5e

Browse files
fix issues with double colons (#80)
1 parent eec485e commit ea65b5e

File tree

2 files changed

+47
-0
lines changed

2 files changed

+47
-0
lines changed

src/tokenizer.ts

+15
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,14 @@ function unread(state: State): void {
140140
state.position--;
141141
}
142142

143+
function peekBack(state: State): Char {
144+
if (state.position == 0) {
145+
return null;
146+
}
147+
148+
return state.input[state.position - 1];
149+
}
150+
143151
function peek(state: State): Char {
144152
if (state.position >= state.input.length - 1) {
145153
return null;
@@ -469,6 +477,13 @@ function isParameter(ch: Char, state: State, paramTypes: ParamTypes): boolean {
469477
return false;
470478
}
471479
const nextChar = peek(state);
480+
const prevChar = peekBack(state);
481+
482+
// HACK (@day): This is a fix for casts and identifiers that use the `::` syntax
483+
if (ch === ':' && (prevChar === ':' || nextChar === ':')) {
484+
return false;
485+
}
486+
472487
if (paramTypes.positional && ch === '?') return true;
473488

474489
if (paramTypes.numbered?.length && paramTypes.numbered.some((type) => ch === type)) {

test/index.spec.ts

+32
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,35 @@ describe('getExecutionType', () => {
127127
expect(getExecutionType('FAKE_TYPE')).to.equal('UNKNOWN');
128128
});
129129
});
130+
131+
describe('Regression tests', () => {
132+
// Regression test: https://github.com/beekeeper-studio/beekeeper-studio/issues/2560
133+
it('Double colon should not be recognized as a param for mssql', () => {
134+
const result = identify(
135+
`
136+
DECLARE @g geometry;
137+
DECLARE @h geometry;
138+
SET @g = geometry::STGeomFromText('POLYGON((0 0, 2 0, 2 2, 0 2, 0 0))', 0);
139+
set @h = geometry::STGeomFromText('POLYGON((1 1, 3 1, 3 3, 1 3, 1 1))', 0);
140+
SELECT @g.STWithin(@h);
141+
`,
142+
{ strict: false, dialect: 'mssql' as Dialect },
143+
);
144+
result.forEach((res) => {
145+
expect(res.parameters.length).to.equal(0);
146+
});
147+
});
148+
149+
// Regression test: https://github.com/beekeeper-studio/beekeeper-studio/issues/2560
150+
it('Double colon should not be recognized as a param for psql', () => {
151+
const result = identify(
152+
`
153+
SELECT '123'::INTEGER;
154+
`,
155+
{ strict: false, dialect: 'psql' as Dialect },
156+
);
157+
result.forEach((res) => {
158+
expect(res.parameters.length).to.equal(0);
159+
});
160+
});
161+
});

0 commit comments

Comments
 (0)