Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/extproc/slp/processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func (p *processor) Process(snapshot *collect.Snapshot) (io.ReadCloser, error) {
return nil, fmt.Errorf("failed to find snapshot body: %w", err)
}

cmd := exec.Command("slp", "my", "--config", p.confPath, "--output", "standard", "--format", "tsv", "--file", bodyPath)
cmd := exec.Command("slp", "my", "--config", p.confPath, "--format", "tsv", "--file", bodyPath)

res, err := cmd.Output()
if err != nil {
Expand Down
1 change: 1 addition & 0 deletions internal/extproc/slp/slp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ bundle_values: true
bundle_where_in: true
filters: Query matches "^(SELECT|INSERT|UPDATE|REPLACE) "
limit: 65536
output: standard