add "IN" to reserved words

pull/88/head
Takayuki Maeda 3 years ago
parent db5931ec6f
commit 68de8582d2

@ -11,7 +11,7 @@ use tui::{
Frame,
};
const RESERVED_WORDS: &[&str] = &["IN", "AND", "OR", "NOT", "NULL", "IS"];
const RESERVED_WORDS: &[&str] = &["IN", "AND", "OR", "NOT", "NULL", "IS", "IN"];
pub struct CompletionComponent {
key_config: KeyConfig,

Loading…
Cancel
Save