@@ -225,7 +225,7 @@ impl SyntaxHighlighterAdapter for SyntaxHighlighter {
225
225
let code =match options. lang {
226
226
"postgresql" |"sql" |"postgresql-line-nums" =>{
227
227
lazy_static ! {
228
- static refSQL_KEYS : [ & ' static str ; 68 ] =[
228
+ static refSQL_KEYS : [ & ' static str ; 69 ] =[
229
229
"PARTITION OF" ,
230
230
"PARTITION BY" ,
231
231
"CASCADE" ,
@@ -276,6 +276,7 @@ impl SyntaxHighlighterAdapter for SyntaxHighlighter {
276
276
"END" ,
277
277
"BETWEEN" ,
278
278
"SET" ,
279
+ "REINDEX" ,
279
280
"INDEX" ,
280
281
"USING" ,
281
282
"GROUP BY" ,
@@ -295,7 +296,7 @@ impl SyntaxHighlighterAdapter for SyntaxHighlighter {
295
296
"pgml.predict" ,
296
297
"pgml.transform" ,
297
298
] ;
298
- static refSQL_KEYS_REPLACEMENTS : [ & ' static str ; 68 ] =[
299
+ static refSQL_KEYS_REPLACEMENTS : [ & ' static str ; 69 ] =[
299
300
r#"<span class="syntax-highlight">PARTITION OF</span>"# ,
300
301
r#"<span class="syntax-highlight">PARTITION BY</span>"# ,
301
302
"<span class=\" syntax-highlight\" >CASCADE</span>" ,
@@ -346,6 +347,7 @@ impl SyntaxHighlighterAdapter for SyntaxHighlighter {
346
347
"<span class=\" syntax-highlight\" >END</span>" ,
347
348
"<span class=\" syntax-highlight\" >BETWEEN</span>" ,
348
349
"<span class=\" syntax-highlight\" >SET</span>" ,
350
+ "<span class=\" syntax-highlight\" >REINDEX</span>" ,
349
351
"<span class=\" syntax-highlight\" >INDEX</span>" ,
350
352
"<span class=\" syntax-highlight\" >USING</span>" ,
351
353
"<span class=\" syntax-highlight\" >GROUP BY</span>" ,