You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ksqlDb.RestApi.Client/KSql/Query/Record.cs
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,7 @@ public class Record
10
10
/// <summary>
11
11
/// Columns that are populated by the Kafka record's header.
12
12
/// </summary>
13
+
[Ignore]
13
14
[IgnoreByInserts]
14
15
[PseudoColumn]
15
16
[Obsolete("This property will be removed in the future. Headers need to be defined per use case and should have the type ARRAY<STRUCT<key STRING, value BYTES>>.")]
@@ -18,20 +19,23 @@ public class Record
18
19
/// <summary>
19
20
/// The offset of the source record.
20
21
/// </summary>
22
+
[Ignore]
21
23
[IgnoreByInserts]
22
24
[PseudoColumn]
23
25
publiclong?RowOffset{get;set;}
24
26
25
27
/// <summary>
26
28
/// The partition of the source record.
27
29
/// </summary>
30
+
[Ignore]
28
31
[IgnoreByInserts]
29
32
[PseudoColumn]
30
33
publicshort?RowPartition{get;set;}
31
34
32
35
/// <summary>
33
36
/// Row timestamp, inferred from the underlying Kafka record if not overridden.
0 commit comments