autocorrect 2.14.2

A linter and formatter for help you improve copywriting, to correct spaces, words, punctuations between CJK (Chinese, Japanese, Korean).
Documentation
// autocorrect: false
use super::*;
use autocorrect_derive::GrammarParser;
use pest::Parser as P;
use pest_derive::Parser;

#[derive(GrammarParser, Parser)]
#[grammar = "../grammar/sql.pest"]
struct SQLParser;

#[cfg(test)]
mod tests {
    use super::*;
    use indoc::indoc;
    use pretty_assertions::assert_eq;

    #[test]
    fn it_format_sql() {
        let example = indoc! {r###"
        SELECT * FROM "topics" WHERE "id" = ?;
        COMMENT ON COLUMN "topics"."user_id" IS 'topic创建者';
        -- Comment注释信息
        COMMENT ON COLUMN "topics"."status" IS '3屏蔽 1审核中 2已发布';
        /* 
          多行,且带有换行
          注释comment信息 
        */
        COMMENT ON COLUMN "topics"."kind" IS '0普通 1转发';
        "###};

        let expect = indoc! {r###"
        SELECT * FROM "topics" WHERE "id" = ?;
        COMMENT ON COLUMN "topics"."user_id" IS 'topic 创建者';
        -- Comment 注释信息
        COMMENT ON COLUMN "topics"."status" IS '3 屏蔽 1 审核中 2 已发布';
        /* 
          多行,且带有换行
          注释 comment 信息 
        */
        COMMENT ON COLUMN "topics"."kind" IS '0 普通 1 转发';
        "###};

        assert_eq!(expect, format_for(example, "sql").to_string());
    }
}