Skip to content

Commit

Permalink
fix check
Browse files Browse the repository at this point in the history
  • Loading branch information
xzhseh committed Sep 15, 2023
1 parent 6c6d471 commit 2429502
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/expr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ ctor = "0.2"
downcast-rs = "1.2"
easy-ext = "1"
either = "1"
fancy-regex = "0.11.0"
futures = { version = "0.3", default-features = false, features = ["alloc"] }
futures-async-stream = { workspace = true }
futures-util = "0.3"
Expand All @@ -38,7 +39,6 @@ num-traits = "0.2"
parse-display = "0.8"
paste = "1"
regex = "1"
fancy-regex = "0.11.0"
risingwave_common = { workspace = true }
risingwave_expr_macro = { path = "macro" }
risingwave_pb = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion src/expr/src/vector_op/regexp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ impl RegexpContext {
if options.case_insensitive {
origin.push_str("(?i:");
origin.push_str(pattern);
origin.push_str(")");
origin.push(')');
} else {
origin = pattern.to_string();
};
Expand Down

0 comments on commit 2429502

Please sign in to comment.