Skip to content

Commit 3b09a76

Browse files
committed
Add precice view
1 parent dc5fec2 commit 3b09a76

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

content/docs/tooling/tooling-performance-analysis.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -444,3 +444,11 @@ JOIN ancestor_slice(s.id) a
444444
WHERE s.name GLOB '*.sync'
445445
GROUP BY a.id;
446446
```
447+
448+
The following is a view that uses preCICE terminology and allows to work with `participant` and numberic `ranks`:
449+
450+
```sql
451+
CREATE VIEW precice AS
452+
SELECT process_name as participant, cast_int!(SUBSTR(thread_name, 6)) AS rank, *
453+
FROM thread_slice;
454+
```

0 commit comments

Comments
 (0)