Skip to content

Commit 473134e

Browse files
authored
tp: fix crash in traceimportslog table (#3429)
1 parent a4a01b5 commit 473134e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/trace_processor/tables/metadata_tables.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,11 @@
856856
C('byte_offset', CppOptional(CppInt64())),
857857
C('severity', CppString()),
858858
C('name', CppString()),
859-
C('arg_set_id', CppOptional(CppUint32())),
859+
C(
860+
'arg_set_id',
861+
CppOptional(CppUint32()),
862+
cpp_access=CppAccess.READ_AND_LOW_PERF_WRITE,
863+
),
860864
],
861865
)
862866

0 commit comments

Comments
 (0)