File tree 1 file changed +27
-18
lines changed
1 file changed +27
-18
lines changed Original file line number Diff line number Diff line change @@ -110,27 +110,36 @@ extern zend_module_entry dql_tokenizer_module_entry;
110
110
#define DQL_TOKEN_UNDEFINED (1<< 3)
111
111
112
112
typedef struct _php_dql_keyword_map {
113
- const char * keywords ;
114
- int code ;
113
+ const char * keywords ;
114
+ int code ;
115
115
} php_dql_keyword_map ;
116
116
117
117
php_dql_keyword_map php_dql_tokens [] = {
118
- {
119
- "delete\0update\0select\0set\0from\0where\0limit\0offset\0having\0" ,
120
- DQL_TOKEN_BASE
121
- },
122
- {
123
- "order\0group\0" ,
124
- DQL_TOKEN_BY
125
- },
126
- {
127
- "by\0" ,
128
- DQL_TOKEN_PASS
129
- },
130
- {
131
- NULL ,
132
- DQL_TOKEN_UNDEFINED
133
- }
118
+ {
119
+ "delete\0update\0select\0set\0from\0where\0limit\0offset\0having\0" ,
120
+ DQL_TOKEN_BASE
121
+ },
122
+ {
123
+ "order\0group\0" ,
124
+ DQL_TOKEN_BY
125
+ },
126
+ {
127
+ "by\0" ,
128
+ DQL_TOKEN_PASS
129
+ },
130
+ {
131
+ NULL ,
132
+ DQL_TOKEN_UNDEFINED
133
+ }
134
134
};
135
135
136
136
#endif /* end of "ifndef PHP_DQL_TOKENIZER_H" */
137
+
138
+ /*
139
+ * Local variables:
140
+ * tab-width: 4
141
+ * c-basic-offset: 4
142
+ * End:
143
+ * vim600: fdm=marker
144
+ * vim: noet sw=4 ts=4
145
+ */
You can’t perform that action at this time.
0 commit comments