branch: externals/sql-indent
commit e843135e68dad5543a6f0610a279638f7c2fe7fc
Merge: 3e213d0 3d4e7a5
Author: alex-hhh <[email protected]>
Commit: GitHub <[email protected]>

    Merge pull request #1 from PierreTechoueyres/pte/start-with-connect-by
    
    Add support for connect by/start with.
---
 sql-indent.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/sql-indent.el b/sql-indent.el
index e43c02a..67e3f75 100644
--- a/sql-indent.el
+++ b/sql-indent.el
@@ -645,7 +645,9 @@ See also `sqlind-beginning-of-block'"
    "where\\|"
    "order[ \t\r\n\f]+by\\|"
    "having\\|"
-   "group[ \t\r\n\f]+by"
+   "group[ \t\r\n\f]+by\\|"
+   "connect[ \t\r\n\f]+by\\|"
+   "start[ \t\r\n\f]+with"
    "\\)\\_>"))
 
 (defconst sqlind-select-join-regexp

Reply via email to