Skip to content

Commit

Permalink
keep using \n to make error message untouched
Browse files Browse the repository at this point in the history
Signed-off-by: Bugen Zhao <[email protected]>
  • Loading branch information
BugenZhao committed Nov 27, 2023
1 parent 3c370f8 commit fa9eae6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/common/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ impl Display for TrackingIssue {
}

#[derive(Error, Debug, Macro)]
#[error("Feature is not yet implemented: {feature}. {issue}")]
#[error("Feature is not yet implemented: {feature}\n{issue}")]
#[thiserror_ext(macro(path = "crate::error"))]
pub struct NotImplemented {
#[message]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@
create table c (v1 int, v2 int);
select * from a left outer join b on a.v1 = b.v1 and a.v2 = (select v2 from c where v1 = 1 limit 1);
planner_error: |-
Feature is not yet implemented: Subquery in join on condition is unsupported
Feature is not yet implemented: Subquery in join on condition
No tracking issue yet. Feel free to submit a feature request at https://github.com/risingwavelabs/risingwave/issues/new?labels=type%2Ffeature&template=feature_request.yml
- sql: |
create table auction (date_time date);
Expand Down

0 comments on commit fa9eae6

Please sign in to comment.