-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: 支持使用create or replace创建函数、存储过程、视图以及包等语句 (#2066)
* fix: 支持使用create or replace创建函数、存储过程、视图以及包等语句 原来代码只支持使用create创建函数、存储过程、视图以及包,使用create or replace创建时获取不到对象名导致报错,实际运维中上线SQL大多使用create or replace方式,修改后同时支持使用create 和 create or replace两个方式。 * Update oracle.py fix-支持Oracle创建存储过程、函数、包等,使用create or replace方式 * Update oracle.py 优化使用正则提取SQL语句中 object name 部分的代码逻辑 * Update oracle.py 优化获取object name部分代码 * Update oracle.py 优化代码 * Update oracle.py 修复lint报错(代码规范) * Update oracle.py 处理lint报错(代码规范) * Update oracle.py * Update oracle.py 调整代码规范
- Loading branch information
Showing
1 changed file
with
52 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters