-
Notifications
You must be signed in to change notification settings - Fork 158
/
Copy pathsql_comments_remove.sql
109 lines (101 loc) · 3.43 KB
/
sql_comments_remove.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
--WARNING This function works incorrect in some cases, see TODO below
create or replace function public.sql_comments_remove(
sql text --SQL запрос
)
returns text
immutable
returns null on null input
parallel safe
language sql
set search_path = ''
cost 2
as
$function$
--https://postgrespro.ru/docs/postgresql/12/sql-syntax-lexical
select regexp_replace(sql, $regexp$
(?:
--[^\r\n]*? #singe-line comment
| /\* #multi-line comment (can be nested)
[^*/]*? #speed improves
(?: [^*/]+?
| \*[^/] #not end comment
| /[^*] #not begin comment
| #recursive:
/\* #multi-line comment (can be nested)
[^*/]*? #speed improves
(?: [^*/]+?
| \*[^/] #not end comment
| /[^*] #not begin comment
| #recursive:
/\* #multi-line comment (can be nested)
[^*/]*? #speed improves
(?: [^*/]+?
| \*[^/] #not end comment
| /[^*] #not begin comment
#| #recursive
)*?
\*/
)*?
\*/
)*?
\*/
| ("(?:[^"]+?|"")*?") #1 identifiers
| ('(?:[^']+?|'')*?') #2 string constants
| (\m[Ee]'(?:[^\\']+?|''|\\.)*?') #3 string constants with c-style escapes
| ( #4
(\$[a-zA-Z\d_]*?\$) #5 dollar-quoted string
[^$]*? #speed improves
.*?
\5
)
)
$regexp$, ' \1\2\3\4', 'xg');
$function$;
comment on function public.sql_comments_remove(sql text) is $$
Удаляет из SQL запроса однострочные и многострочные комментарии (заменяет их на пробел)
For example, it's useful to clean up the query field returned by the pg_stat_statements extension and remove all comments.
$$;
--TEST
DO $do$
DECLARE
sql text default $sql$
select
'TEST sql_comments_remove() start'
,1,'qq' --/*7/*8*/9*/!
,2,'st--\''ri$$ng'/*--*/
,3,'e', ' \' --/*1''2 */!'
,4 as "id--""/*--*/en$$t\""\\!"
,5 /*--"456--!*/
,6 /* многострочный" комментарий"!
,,--123---!
,,\* /*с*/ вложенностью: /* вложенный /*блок*/" комментария */*
,!*/
,7, $$dol--lar!$$
,8, $b$
/*$$'dol--lar'$$*/
$b$
,'TEST sql_comments_remove() end'
$sql$;
BEGIN
raise notice '%', sql;
execute sql;
sql := sql_comments_remove(sql);
raise notice '%', sql;
execute sql;
END
$do$;
--TODO regexp error with `.*?`
/*
select m[1]
from regexp_matches($SQL_split$
comment on type test.test1 is $$comment1$$;
comment on column test.test2 is $$comment2$$;
$SQL_split$,
$regexp$
(\$\$
#(?:(?!\$\$).)*
.*?
\$\$)
#| unknown # UNCOMMENT ME AND EXECUTE QUERY AGAIN! Ungreedy flag `?` does not work!
$regexp$, 'gx') as m;
*/