1. 修改 `package.json` 中的项目名称和版本号。 2. 更新 `node_modules` 中的依赖包版本。 3. 修改 `src/index.ts` 中的 SQL 语句和 `caretColumn` 的计算方式。 4. 修改 `src/parse/default-rules.ts` 中的规则和导入语句。 5. 修改 `src/parse/visitor.ts` 中的访问者和规则。 6. 修改 `src/preprocess/default-preprocessor.ts` 中的预处理逻辑。 7. 修改 `src/types.ts` 中的导入语句。
35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
import { type Preprocessor } from '../types'
|
|
|
|
export const addSuffixForParseSelectProcessor: Preprocessor = (sql: string) => {
|
|
const suffix = ' '
|
|
const maxWords = 3
|
|
if (/select( )+/.test(sql.toLowerCase()) && sql.split(' ').filter(item => item).length < maxWords) {
|
|
return sql + '' + suffix
|
|
}
|
|
return sql
|
|
}
|
|
|
|
export const addSuffixForParseAlterFunctionProcessor: Preprocessor = (sql: string) => {
|
|
const suffix = 'RESET ALL'
|
|
const maxWords = 4
|
|
if (/alter( )+function/.test(sql.toLowerCase()) && sql.split(' ').filter(item => item).length < maxWords) {
|
|
return sql + '' + suffix
|
|
}
|
|
return sql
|
|
}
|
|
|
|
export const addSuffixForParseAlterTableProcessor: Preprocessor = (sql: string) => {
|
|
const suffix = 'SET WITHOUT OIDS'
|
|
const maxWords = 4
|
|
if (/alter( )+table/.test(sql.toLowerCase()) && sql.split(' ').filter(item => item).length < maxWords) {
|
|
return sql + '' + suffix
|
|
}
|
|
return sql
|
|
}
|
|
|
|
export const defaultPreprocessorList = [
|
|
addSuffixForParseAlterFunctionProcessor,
|
|
addSuffixForParseAlterTableProcessor,
|
|
addSuffixForParseSelectProcessor
|
|
]
|