@@ -6,7 +6,7 @@ const tokenPatterns = {
6
6
function : "\\b(ISNULL)\\b" , // Matches function names like ISNULL (case-insensitive)
7
7
null : "\\bNULL\\b|\\(\\s*NULL\\s*\\)" , // Matches NULL as a keyword
8
8
number : "\\(\\d+\\)|\\d+" , // Matches numbers while stripping unnecessary parentheses
9
- placeholder : "'?\\{[^}]+\\}'?" , // Matches placeholders like {variable} or '{variable}'
9
+ placeholder : "\\( '?\\{[^}]+\\}'?\\)|'?\\{[^}]+\\}'? " , // Matches placeholders like {variable} or '{variable}' or ({variable}) or ('{variable}')
10
10
string : "\\('\\w+\\'\\)|'(?:''|[^'])*'" , // Matches strings, allowing for escaped single quotes ('')
11
11
operator : "=>|<=|!=|>=|=|<>|>|<|\\bAND\\b|\\bOR\\b|\\bBETWEEN\\b|\\bIN\\b|\\bNOT IN\\b|\\bLIKE\\b|\\bIS NOT\\b|\\bNOT LIKE\\b|\\bIS\\b" , // Matches SQL operators and logical keywords
12
12
identifier : "[\\w.]+|\"[^\"]+\"|\\[[^\\]]+\\]" , // Matches regular identifiers, quoted identifiers ("identifier"), and bracketed identifiers [identifier]
@@ -47,7 +47,7 @@ class Tokenizer {
47
47
let value = match . groups [ type ] ;
48
48
49
49
// Remove surrounding single quotes from placeholders
50
- if ( type === "placeholder" ) value = value . replace ( / ^ [ ' " ] | [ ' " ] $ / g , "" ) . replace ( " " , "" ) ;
50
+ if ( type === "placeholder" ) value = value . replace ( / ^ [ \s ' " \( \) ] + | [ \s ' " \( \) ] + | [ \s ] + / g , "" ) ;
51
51
52
52
if ( type === "operator" ) {
53
53
const lowerValue = value . toLowerCase ( ) ;
@@ -59,15 +59,15 @@ class Tokenizer {
59
59
}
60
60
}
61
61
62
- if ( LITERALS . includes ( type ) ) {
62
+ if ( LITERALS . includes ( type ) ) {
63
63
value = value . replace ( / ^ [ ( ] | [ ) ] $ / g, "" ) ;
64
64
}
65
65
66
66
if ( type === "identifier" ) {
67
67
value = value . replace ( / ^ [ " \[ ] | [ " \] ] $ / g, "" ) ;
68
68
}
69
-
70
-
69
+
70
+
71
71
return { type, value } ;
72
72
}
73
73
0 commit comments