Merged
Conversation
2020-01-14更新项目
更新archery
1. 支持SELECT COUNT(*)查询, 不再限制limit; 2. 同时还支持执行以下SQL: (a)创建存储过程、函数、包、包体、触发器等对象的定义; (b)执行PLSQL可执行匿名块; 暂定该类SQL以delimiter $$作为起始分隔符,以$$作为结束分隔符; 每一个对象定义,前后套用一个起始和结束分隔符; 为了保留该类SQL的注释,该类SQL没有做注释的过滤,提高SQL的可读性 3. 如果视图定义SQL也需保留注释,也可以delimiter $$作为起始分隔符,以$$作为结束分隔符
Collaborator
|
rebase 之后force push 一下吧, base 太老了, ci没过看一下. |
Owner
|
base 倒是没问题 merge过几次,我们合时可以 squash,ci的两个错误要看一下 |
hhyo
approved these changes
Mar 27, 2020
Owner
hhyo
left a comment
There was a problem hiding this comment.
pr分支为master,我无法强制push,先合并我再处理ci的问题
This was referenced Mar 27, 2020
xxlaila
pushed a commit
to xxlaila/Archery
that referenced
this pull request
Feb 15, 2025
1. 支持SELECT COUNT(*)查询, 不再限制limit; 2. 同时还支持执行以下SQL: (a)创建存储过程、函数、包、包体、触发器等对象的定义; (b)执行PLSQL可执行匿名块; 暂定该类SQL以delimiter $$作为起始分隔符,以$$作为结束分隔符; 每一个对象定义,前后套用一个起始和结束分隔符; 为了保留该类SQL的注释,该类SQL没有做注释的过滤,提高SQL的可读性 3. 如果视图定义SQL也需保留注释,也可以delimiter $$作为起始分隔符,以$$作为结束分隔符
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
支持SELECT COUNT(*)查询, 不再限制limit;
同时还支持执行以下SQL:
(a)创建存储过程、函数、包、包体、触发器等对象的定义;
(b)执行PLSQL可执行匿名块;
暂定该类SQL以delimiter$$作为起始分隔符,以$$ 作为结束分隔符;
每一个对象定义,前后套用一个起始和结束分隔符;
为了保留该类SQL的注释,该类SQL没有做注释的过滤,提高SQL的可读性
如果视图定义SQL也需保留注释,也可以delimiter$$作为起始分隔符,以$$ 作为结束分隔符