github.com/GuanceCloud/cliutils@v1.1.21/pipeline/ptinput/funcs/md/sql_cover.md (about) 1 ### `sql_cover()` {#fn-sql-cover} 2 3 函数原型:`fn sql_cover(sql_test: str)` 4 5 函数说明:脱敏 SQL 语句 6 7 ```python 8 # in << {"select abc from def where x > 3 and y < 5"} 9 sql_cover(_) 10 11 # Extracted data(drop: false, cost: 33.279µs): 12 # { 13 # "message": "select abc from def where x > ? and y < ?" 14 # } 15 ```