github.com/GuanceCloud/cliutils@v1.1.21/pipeline/ptinput/funcs/md/sql_cover.en.md (about)

     1  ### `sql_cover()` {#fn-sql-cover}
     2  
     3  Function prototype: `fn sql_cover(sql_test: str)`
     4  
     5  Function description: desensitized SQL statement
     6  
     7  Example:
     8  
     9  ```python
    10  # in << {"select abc from def where x > 3 and y < 5"}
    11  sql_cover(_)
    12  
    13  # Extracted data(drop: false, cost: 33.279µs):
    14  # {
    15  # "message": "select abc from def where x > ? and y < ?"
    16  # }
    17  ```