diff --git a/rust/cubestore/cubestore/src/sql/parser.rs b/rust/cubestore/cubestore/src/sql/parser.rs index 802c7fa45b1a2..0916d5284d730 100644 --- a/rust/cubestore/cubestore/src/sql/parser.rs +++ b/rust/cubestore/cubestore/src/sql/parser.rs @@ -508,7 +508,7 @@ impl<'a> CubeStoreParser<'a> { "clear" => CacheCommand::Clear {}, other => { return Err(ParserError::ParserError(format!( - "Unknown cache command: {}, available: SET|GET|KEYS|INC|REMOVE|CLEAR", + "Unknown cache command: {}, available: SET|GET|KEYS|INCR|REMOVE|CLEAR", other ))) }