Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
5abd7635
Commit
5abd7635
authored
Jun 22, 2004
by
marko@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lexyy.c, pars0lex.l:
Document the handling of quoted strings
parent
700c2332
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
158 additions
and
113 deletions
+158
-113
innobase/pars/lexyy.c
innobase/pars/lexyy.c
+133
-111
innobase/pars/pars0lex.l
innobase/pars/pars0lex.l
+25
-2
No files found.
innobase/pars/lexyy.c
View file @
5abd7635
...
...
@@ -25,7 +25,6 @@
#ifdef __cplusplus
#include <stdlib.h>
#include <unistd.h>
/* Use prototypes in function declarations. */
#define YY_USE_PROTOS
...
...
@@ -934,31 +933,54 @@ case 3:
YY_RULE_SETUP
#line 116 "pars0lex.l"
{
/* Quoted character string literals are handled in an explicit
start state 'quoted'. This state is entered and the buffer for
the scanned string is emptied upon encountering a starting quote.
In the state 'quoted', only two actions are possible (defined below). */
BEGIN
(
quoted
);
stringbuf_len
=
0
;
}
YY_BREAK
case
4
:
YY_RULE_SETUP
#line 120 "pars0lex.l"
string_append
(
yytext
,
yyleng
);
#line 125 "pars0lex.l"
{
/* Got a sequence of characters other than "'":
append to string buffer */
string_append
(
yytext
,
yyleng
);
}
YY_BREAK
case
5
:
YY_RULE_SETUP
#line 121 "pars0lex.l"
{
string_append
(
yytext
,
yyleng
/
2
);
#line 130 "pars0lex.l"
{
/* Got a sequence of "'" characters:
append half of them to string buffer,
as "''" represents a single "'".
We apply truncating division,
so that "'''" will result in "'". */
string_append
(
yytext
,
yyleng
/
2
);
/* If we got an odd number of quotes, then the
last quote we got is the terminating quote.
At the end of the string, we return to the
initial start state and report the scanned
string literal. */
if
(
yyleng
%
2
)
{
BEGIN
(
INITIAL
);
yylval
=
sym_tab_add_str_lit
(
pars_sym_tab_global
,
stringbuf
,
stringbuf_len
);
(
byte
*
)
stringbuf
,
stringbuf_len
);
return
(
PARS_STR_LIT
);
}
}
YY_BREAK
case
6
:
YY_RULE_SETUP
#line 1
31
"pars0lex.l"
#line 1
54
"pars0lex.l"
{
yylval
=
sym_tab_add_null_lit
(
pars_sym_tab_global
);
...
...
@@ -967,521 +989,521 @@ YY_RULE_SETUP
YY_BREAK
case
7
:
YY_RULE_SETUP
#line 1
37
"pars0lex.l"
#line 1
60
"pars0lex.l"
{
/* Implicit cursor name */
yylval
=
sym_tab_add_str_lit
(
pars_sym_tab_global
,
yytext
,
yyleng
);
(
byte
*
)
yytext
,
yyleng
);
return
(
PARS_SQL_TOKEN
);
}
YY_BREAK
case
8
:
YY_RULE_SETUP
#line 1
44
"pars0lex.l"
#line 1
67
"pars0lex.l"
{
return
(
PARS_AND_TOKEN
);
}
YY_BREAK
case
9
:
YY_RULE_SETUP
#line 1
48
"pars0lex.l"
#line 1
71
"pars0lex.l"
{
return
(
PARS_OR_TOKEN
);
}
YY_BREAK
case
10
:
YY_RULE_SETUP
#line 1
52
"pars0lex.l"
#line 1
75
"pars0lex.l"
{
return
(
PARS_NOT_TOKEN
);
}
YY_BREAK
case
11
:
YY_RULE_SETUP
#line 1
56
"pars0lex.l"
#line 1
79
"pars0lex.l"
{
return
(
PARS_PROCEDURE_TOKEN
);
}
YY_BREAK
case
12
:
YY_RULE_SETUP
#line 1
60
"pars0lex.l"
#line 1
83
"pars0lex.l"
{
return
(
PARS_IN_TOKEN
);
}
YY_BREAK
case
13
:
YY_RULE_SETUP
#line 1
64
"pars0lex.l"
#line 1
87
"pars0lex.l"
{
return
(
PARS_OUT_TOKEN
);
}
YY_BREAK
case
14
:
YY_RULE_SETUP
#line 1
68
"pars0lex.l"
#line 1
91
"pars0lex.l"
{
return
(
PARS_INT_TOKEN
);
}
YY_BREAK
case
15
:
YY_RULE_SETUP
#line 1
72
"pars0lex.l"
#line 1
95
"pars0lex.l"
{
return
(
PARS_INT_TOKEN
);
}
YY_BREAK
case
16
:
YY_RULE_SETUP
#line 1
76
"pars0lex.l"
#line 1
99
"pars0lex.l"
{
return
(
PARS_FLOAT_TOKEN
);
}
YY_BREAK
case
17
:
YY_RULE_SETUP
#line
180
"pars0lex.l"
#line
203
"pars0lex.l"
{
return
(
PARS_CHAR_TOKEN
);
}
YY_BREAK
case
18
:
YY_RULE_SETUP
#line
184
"pars0lex.l"
#line
207
"pars0lex.l"
{
return
(
PARS_IS_TOKEN
);
}
YY_BREAK
case
19
:
YY_RULE_SETUP
#line
188
"pars0lex.l"
#line
211
"pars0lex.l"
{
return
(
PARS_BEGIN_TOKEN
);
}
YY_BREAK
case
20
:
YY_RULE_SETUP
#line
192
"pars0lex.l"
#line
215
"pars0lex.l"
{
return
(
PARS_END_TOKEN
);
}
YY_BREAK
case
21
:
YY_RULE_SETUP
#line
196
"pars0lex.l"
#line
219
"pars0lex.l"
{
return
(
PARS_IF_TOKEN
);
}
YY_BREAK
case
22
:
YY_RULE_SETUP
#line 2
00
"pars0lex.l"
#line 2
23
"pars0lex.l"
{
return
(
PARS_THEN_TOKEN
);
}
YY_BREAK
case
23
:
YY_RULE_SETUP
#line 2
04
"pars0lex.l"
#line 2
27
"pars0lex.l"
{
return
(
PARS_ELSE_TOKEN
);
}
YY_BREAK
case
24
:
YY_RULE_SETUP
#line 2
08
"pars0lex.l"
#line 2
31
"pars0lex.l"
{
return
(
PARS_ELSIF_TOKEN
);
}
YY_BREAK
case
25
:
YY_RULE_SETUP
#line 2
12
"pars0lex.l"
#line 2
35
"pars0lex.l"
{
return
(
PARS_LOOP_TOKEN
);
}
YY_BREAK
case
26
:
YY_RULE_SETUP
#line 2
16
"pars0lex.l"
#line 2
39
"pars0lex.l"
{
return
(
PARS_WHILE_TOKEN
);
}
YY_BREAK
case
27
:
YY_RULE_SETUP
#line 2
20
"pars0lex.l"
#line 2
43
"pars0lex.l"
{
return
(
PARS_RETURN_TOKEN
);
}
YY_BREAK
case
28
:
YY_RULE_SETUP
#line 2
24
"pars0lex.l"
#line 2
47
"pars0lex.l"
{
return
(
PARS_SELECT_TOKEN
);
}
YY_BREAK
case
29
:
YY_RULE_SETUP
#line 2
28
"pars0lex.l"
#line 2
51
"pars0lex.l"
{
return
(
PARS_SUM_TOKEN
);
}
YY_BREAK
case
30
:
YY_RULE_SETUP
#line 2
32
"pars0lex.l"
#line 2
55
"pars0lex.l"
{
return
(
PARS_COUNT_TOKEN
);
}
YY_BREAK
case
31
:
YY_RULE_SETUP
#line 2
36
"pars0lex.l"
#line 2
59
"pars0lex.l"
{
return
(
PARS_DISTINCT_TOKEN
);
}
YY_BREAK
case
32
:
YY_RULE_SETUP
#line 2
40
"pars0lex.l"
#line 2
63
"pars0lex.l"
{
return
(
PARS_FROM_TOKEN
);
}
YY_BREAK
case
33
:
YY_RULE_SETUP
#line 2
44
"pars0lex.l"
#line 2
67
"pars0lex.l"
{
return
(
PARS_WHERE_TOKEN
);
}
YY_BREAK
case
34
:
YY_RULE_SETUP
#line 2
48
"pars0lex.l"
#line 2
71
"pars0lex.l"
{
return
(
PARS_FOR_TOKEN
);
}
YY_BREAK
case
35
:
YY_RULE_SETUP
#line 2
52
"pars0lex.l"
#line 2
75
"pars0lex.l"
{
return
(
PARS_CONSISTENT_TOKEN
);
}
YY_BREAK
case
36
:
YY_RULE_SETUP
#line 2
56
"pars0lex.l"
#line 2
79
"pars0lex.l"
{
return
(
PARS_READ_TOKEN
);
}
YY_BREAK
case
37
:
YY_RULE_SETUP
#line 2
60
"pars0lex.l"
#line 2
83
"pars0lex.l"
{
return
(
PARS_ORDER_TOKEN
);
}
YY_BREAK
case
38
:
YY_RULE_SETUP
#line 2
64
"pars0lex.l"
#line 2
87
"pars0lex.l"
{
return
(
PARS_BY_TOKEN
);
}
YY_BREAK
case
39
:
YY_RULE_SETUP
#line 2
68
"pars0lex.l"
#line 2
91
"pars0lex.l"
{
return
(
PARS_ASC_TOKEN
);
}
YY_BREAK
case
40
:
YY_RULE_SETUP
#line 2
72
"pars0lex.l"
#line 2
95
"pars0lex.l"
{
return
(
PARS_DESC_TOKEN
);
}
YY_BREAK
case
41
:
YY_RULE_SETUP
#line 2
76
"pars0lex.l"
#line 2
99
"pars0lex.l"
{
return
(
PARS_INSERT_TOKEN
);
}
YY_BREAK
case
42
:
YY_RULE_SETUP
#line
280
"pars0lex.l"
#line
303
"pars0lex.l"
{
return
(
PARS_INTO_TOKEN
);
}
YY_BREAK
case
43
:
YY_RULE_SETUP
#line
284
"pars0lex.l"
#line
307
"pars0lex.l"
{
return
(
PARS_VALUES_TOKEN
);
}
YY_BREAK
case
44
:
YY_RULE_SETUP
#line
288
"pars0lex.l"
#line
311
"pars0lex.l"
{
return
(
PARS_UPDATE_TOKEN
);
}
YY_BREAK
case
45
:
YY_RULE_SETUP
#line
292
"pars0lex.l"
#line
315
"pars0lex.l"
{
return
(
PARS_SET_TOKEN
);
}
YY_BREAK
case
46
:
YY_RULE_SETUP
#line
296
"pars0lex.l"
#line
319
"pars0lex.l"
{
return
(
PARS_DELETE_TOKEN
);
}
YY_BREAK
case
47
:
YY_RULE_SETUP
#line 3
00
"pars0lex.l"
#line 3
23
"pars0lex.l"
{
return
(
PARS_CURRENT_TOKEN
);
}
YY_BREAK
case
48
:
YY_RULE_SETUP
#line 3
04
"pars0lex.l"
#line 3
27
"pars0lex.l"
{
return
(
PARS_OF_TOKEN
);
}
YY_BREAK
case
49
:
YY_RULE_SETUP
#line 3
08
"pars0lex.l"
#line 3
31
"pars0lex.l"
{
return
(
PARS_CREATE_TOKEN
);
}
YY_BREAK
case
50
:
YY_RULE_SETUP
#line 3
12
"pars0lex.l"
#line 3
35
"pars0lex.l"
{
return
(
PARS_TABLE_TOKEN
);
}
YY_BREAK
case
51
:
YY_RULE_SETUP
#line 3
16
"pars0lex.l"
#line 3
39
"pars0lex.l"
{
return
(
PARS_INDEX_TOKEN
);
}
YY_BREAK
case
52
:
YY_RULE_SETUP
#line 3
20
"pars0lex.l"
#line 3
43
"pars0lex.l"
{
return
(
PARS_UNIQUE_TOKEN
);
}
YY_BREAK
case
53
:
YY_RULE_SETUP
#line 3
24
"pars0lex.l"
#line 3
47
"pars0lex.l"
{
return
(
PARS_CLUSTERED_TOKEN
);
}
YY_BREAK
case
54
:
YY_RULE_SETUP
#line 3
28
"pars0lex.l"
#line 3
51
"pars0lex.l"
{
return
(
PARS_DOES_NOT_FIT_IN_MEM_TOKEN
);
}
YY_BREAK
case
55
:
YY_RULE_SETUP
#line 3
32
"pars0lex.l"
#line 3
55
"pars0lex.l"
{
return
(
PARS_ON_TOKEN
);
}
YY_BREAK
case
56
:
YY_RULE_SETUP
#line 3
36
"pars0lex.l"
#line 3
59
"pars0lex.l"
{
return
(
PARS_DECLARE_TOKEN
);
}
YY_BREAK
case
57
:
YY_RULE_SETUP
#line 3
40
"pars0lex.l"
#line 3
63
"pars0lex.l"
{
return
(
PARS_CURSOR_TOKEN
);
}
YY_BREAK
case
58
:
YY_RULE_SETUP
#line 3
44
"pars0lex.l"
#line 3
67
"pars0lex.l"
{
return
(
PARS_OPEN_TOKEN
);
}
YY_BREAK
case
59
:
YY_RULE_SETUP
#line 3
48
"pars0lex.l"
#line 3
71
"pars0lex.l"
{
return
(
PARS_FETCH_TOKEN
);
}
YY_BREAK
case
60
:
YY_RULE_SETUP
#line 3
52
"pars0lex.l"
#line 3
75
"pars0lex.l"
{
return
(
PARS_CLOSE_TOKEN
);
}
YY_BREAK
case
61
:
YY_RULE_SETUP
#line 3
56
"pars0lex.l"
#line 3
79
"pars0lex.l"
{
return
(
PARS_NOTFOUND_TOKEN
);
}
YY_BREAK
case
62
:
YY_RULE_SETUP
#line 3
60
"pars0lex.l"
#line 3
83
"pars0lex.l"
{
return
(
PARS_TO_CHAR_TOKEN
);
}
YY_BREAK
case
63
:
YY_RULE_SETUP
#line 3
64
"pars0lex.l"
#line 3
87
"pars0lex.l"
{
return
(
PARS_TO_NUMBER_TOKEN
);
}
YY_BREAK
case
64
:
YY_RULE_SETUP
#line 3
68
"pars0lex.l"
#line 3
91
"pars0lex.l"
{
return
(
PARS_TO_BINARY_TOKEN
);
}
YY_BREAK
case
65
:
YY_RULE_SETUP
#line 3
72
"pars0lex.l"
#line 3
95
"pars0lex.l"
{
return
(
PARS_BINARY_TO_NUMBER_TOKEN
);
}
YY_BREAK
case
66
:
YY_RULE_SETUP
#line 3
76
"pars0lex.l"
#line 3
99
"pars0lex.l"
{
return
(
PARS_SUBSTR_TOKEN
);
}
YY_BREAK
case
67
:
YY_RULE_SETUP
#line
380
"pars0lex.l"
#line
403
"pars0lex.l"
{
return
(
PARS_REPLSTR_TOKEN
);
}
YY_BREAK
case
68
:
YY_RULE_SETUP
#line
384
"pars0lex.l"
#line
407
"pars0lex.l"
{
return
(
PARS_CONCAT_TOKEN
);
}
YY_BREAK
case
69
:
YY_RULE_SETUP
#line
388
"pars0lex.l"
#line
411
"pars0lex.l"
{
return
(
PARS_INSTR_TOKEN
);
}
YY_BREAK
case
70
:
YY_RULE_SETUP
#line
392
"pars0lex.l"
#line
415
"pars0lex.l"
{
return
(
PARS_LENGTH_TOKEN
);
}
YY_BREAK
case
71
:
YY_RULE_SETUP
#line
396
"pars0lex.l"
#line
419
"pars0lex.l"
{
return
(
PARS_SYSDATE_TOKEN
);
}
YY_BREAK
case
72
:
YY_RULE_SETUP
#line 4
00
"pars0lex.l"
#line 4
23
"pars0lex.l"
{
return
(
PARS_PRINTF_TOKEN
);
}
YY_BREAK
case
73
:
YY_RULE_SETUP
#line 4
04
"pars0lex.l"
#line 4
27
"pars0lex.l"
{
return
(
PARS_ASSERT_TOKEN
);
}
YY_BREAK
case
74
:
YY_RULE_SETUP
#line 4
08
"pars0lex.l"
#line 4
31
"pars0lex.l"
{
return
(
PARS_RND_TOKEN
);
}
YY_BREAK
case
75
:
YY_RULE_SETUP
#line 4
12
"pars0lex.l"
#line 4
35
"pars0lex.l"
{
return
(
PARS_RND_STR_TOKEN
);
}
YY_BREAK
case
76
:
YY_RULE_SETUP
#line 4
16
"pars0lex.l"
#line 4
39
"pars0lex.l"
{
return
(
PARS_ROW_PRINTF_TOKEN
);
}
YY_BREAK
case
77
:
YY_RULE_SETUP
#line 4
20
"pars0lex.l"
#line 4
43
"pars0lex.l"
{
return
(
PARS_COMMIT_TOKEN
);
}
YY_BREAK
case
78
:
YY_RULE_SETUP
#line 4
24
"pars0lex.l"
#line 4
47
"pars0lex.l"
{
return
(
PARS_ROLLBACK_TOKEN
);
}
YY_BREAK
case
79
:
YY_RULE_SETUP
#line 4
28
"pars0lex.l"
#line 4
51
"pars0lex.l"
{
return
(
PARS_WORK_TOKEN
);
}
YY_BREAK
case
80
:
YY_RULE_SETUP
#line 4
32
"pars0lex.l"
#line 4
55
"pars0lex.l"
{
yylval
=
sym_tab_add_id
(
pars_sym_tab_global
,
(
byte
*
)
yytext
,
...
...
@@ -1491,42 +1513,42 @@ YY_RULE_SETUP
YY_BREAK
case
81
:
YY_RULE_SETUP
#line 4
39
"pars0lex.l"
#line 4
62
"pars0lex.l"
{
return
(
PARS_DDOT_TOKEN
);
}
YY_BREAK
case
82
:
YY_RULE_SETUP
#line 4
43
"pars0lex.l"
#line 4
66
"pars0lex.l"
{
return
(
PARS_ASSIGN_TOKEN
);
}
YY_BREAK
case
83
:
YY_RULE_SETUP
#line 4
47
"pars0lex.l"
#line 4
70
"pars0lex.l"
{
return
(
PARS_LE_TOKEN
);
}
YY_BREAK
case
84
:
YY_RULE_SETUP
#line 4
51
"pars0lex.l"
#line 4
74
"pars0lex.l"
{
return
(
PARS_GE_TOKEN
);
}
YY_BREAK
case
85
:
YY_RULE_SETUP
#line 4
55
"pars0lex.l"
#line 4
78
"pars0lex.l"
{
return
(
PARS_NE_TOKEN
);
}
YY_BREAK
case
86
:
YY_RULE_SETUP
#line 4
59
"pars0lex.l"
#line 4
82
"pars0lex.l"
{
return
((
int
)(
*
yytext
));
...
...
@@ -1534,7 +1556,7 @@ YY_RULE_SETUP
YY_BREAK
case
87
:
YY_RULE_SETUP
#line 4
64
"pars0lex.l"
#line 4
87
"pars0lex.l"
{
return
((
int
)(
*
yytext
));
...
...
@@ -1542,7 +1564,7 @@ YY_RULE_SETUP
YY_BREAK
case
88
:
YY_RULE_SETUP
#line 4
69
"pars0lex.l"
#line 4
92
"pars0lex.l"
{
return
((
int
)(
*
yytext
));
...
...
@@ -1550,7 +1572,7 @@ YY_RULE_SETUP
YY_BREAK
case
89
:
YY_RULE_SETUP
#line 4
74
"pars0lex.l"
#line 4
97
"pars0lex.l"
{
return
((
int
)(
*
yytext
));
...
...
@@ -1558,7 +1580,7 @@ YY_RULE_SETUP
YY_BREAK
case
90
:
YY_RULE_SETUP
#line
479
"pars0lex.l"
#line
502
"pars0lex.l"
{
return
((
int
)(
*
yytext
));
...
...
@@ -1566,7 +1588,7 @@ YY_RULE_SETUP
YY_BREAK
case
91
:
YY_RULE_SETUP
#line
484
"pars0lex.l"
#line
507
"pars0lex.l"
{
return
((
int
)(
*
yytext
));
...
...
@@ -1574,7 +1596,7 @@ YY_RULE_SETUP
YY_BREAK
case
92
:
YY_RULE_SETUP
#line
489
"pars0lex.l"
#line
512
"pars0lex.l"
{
return
((
int
)(
*
yytext
));
...
...
@@ -1582,7 +1604,7 @@ YY_RULE_SETUP
YY_BREAK
case
93
:
YY_RULE_SETUP
#line
494
"pars0lex.l"
#line
517
"pars0lex.l"
{
return
((
int
)(
*
yytext
));
...
...
@@ -1590,7 +1612,7 @@ YY_RULE_SETUP
YY_BREAK
case
94
:
YY_RULE_SETUP
#line
499
"pars0lex.l"
#line
522
"pars0lex.l"
{
return
((
int
)(
*
yytext
));
...
...
@@ -1598,7 +1620,7 @@ YY_RULE_SETUP
YY_BREAK
case
95
:
YY_RULE_SETUP
#line 5
04
"pars0lex.l"
#line 5
27
"pars0lex.l"
{
return
((
int
)(
*
yytext
));
...
...
@@ -1606,7 +1628,7 @@ YY_RULE_SETUP
YY_BREAK
case
96
:
YY_RULE_SETUP
#line 5
09
"pars0lex.l"
#line 5
32
"pars0lex.l"
{
return
((
int
)(
*
yytext
));
...
...
@@ -1614,7 +1636,7 @@ YY_RULE_SETUP
YY_BREAK
case
97
:
YY_RULE_SETUP
#line 5
14
"pars0lex.l"
#line 5
37
"pars0lex.l"
{
return
((
int
)(
*
yytext
));
...
...
@@ -1622,7 +1644,7 @@ YY_RULE_SETUP
YY_BREAK
case
98
:
YY_RULE_SETUP
#line 5
19
"pars0lex.l"
#line 5
42
"pars0lex.l"
{
return
((
int
)(
*
yytext
));
...
...
@@ -1630,7 +1652,7 @@ YY_RULE_SETUP
YY_BREAK
case
99
:
YY_RULE_SETUP
#line 5
24
"pars0lex.l"
#line 5
47
"pars0lex.l"
{
return
((
int
)(
*
yytext
));
...
...
@@ -1638,7 +1660,7 @@ YY_RULE_SETUP
YY_BREAK
case
100
:
YY_RULE_SETUP
#line 5
29
"pars0lex.l"
#line 5
52
"pars0lex.l"
{
return
((
int
)(
*
yytext
));
...
...
@@ -1646,32 +1668,32 @@ YY_RULE_SETUP
YY_BREAK
case
101
:
YY_RULE_SETUP
#line 5
34
"pars0lex.l"
#line 5
57
"pars0lex.l"
BEGIN
(
comment
);
/* eat up comment */
YY_BREAK
case
102
:
YY_RULE_SETUP
#line 5
36
"pars0lex.l"
#line 5
59
"pars0lex.l"
YY_BREAK
case
103
:
YY_RULE_SETUP
#line 5
37
"pars0lex.l"
#line 5
60
"pars0lex.l"
YY_BREAK
case
104
:
YY_RULE_SETUP
#line 5
38
"pars0lex.l"
#line 5
61
"pars0lex.l"
BEGIN
(
INITIAL
);
YY_BREAK
case
105
:
YY_RULE_SETUP
#line 5
40
"pars0lex.l"
#line 5
63
"pars0lex.l"
/* eat up whitespace */
YY_BREAK
case
106
:
YY_RULE_SETUP
#line 5
43
"pars0lex.l"
#line 5
66
"pars0lex.l"
{
fprintf
(
stderr
,
"Unrecognized character: %02x
\n
"
,
*
yytext
);
...
...
@@ -1683,10 +1705,10 @@ YY_RULE_SETUP
YY_BREAK
case
107
:
YY_RULE_SETUP
#line 5
52
"pars0lex.l"
#line 5
75
"pars0lex.l"
YY_FATAL_ERROR
(
"flex scanner jammed"
);
YY_BREAK
#line 1
687
"lex.yy.c"
#line 1
710
"lex.yy.c"
case
YY_STATE_EOF
(
INITIAL
):
case
YY_STATE_EOF
(
comment
):
case
YY_STATE_EOF
(
quoted
):
...
...
@@ -2574,5 +2596,5 @@ int main()
return
0
;
}
#endif
#line 5
52
"pars0lex.l"
#line 5
75
"pars0lex.l"
innobase/pars/pars0lex.l
View file @
5abd7635
...
...
@@ -114,11 +114,34 @@ ID [a-z_A-Z][a-z_A-Z0-9]*
}
"'" {
/* Quoted character string literals are handled in an explicit
start state 'quoted'. This state is entered and the buffer for
the scanned string is emptied upon encountering a starting quote.
In the state 'quoted', only two actions are possible (defined below). */
BEGIN(quoted);
stringbuf_len = 0;
}
<quoted>[^\']+ string_append(yytext, yyleng);
<quoted>"'"+ { string_append(yytext, yyleng / 2);
<quoted>[^\']+ {
/* Got a sequence of characters other than "'":
append to string buffer */
string_append(yytext, yyleng);
}
<quoted>"'"+ {
/* Got a sequence of "'" characters:
append half of them to string buffer,
as "''" represents a single "'".
We apply truncating division,
so that "'''" will result in "'". */
string_append(yytext, yyleng / 2);
/* If we got an odd number of quotes, then the
last quote we got is the terminating quote.
At the end of the string, we return to the
initial start state and report the scanned
string literal. */
if (yyleng % 2) {
BEGIN(INITIAL);
yylval = sym_tab_add_str_lit(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment