We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e62fdd3 commit 8f9237cCopy full SHA for 8f9237c
csharp/src/Apache.Arrow.Flight/FlightInfo.cs
@@ -76,10 +76,14 @@ internal Protocol.FlightInfo ToProtocol()
76
FlightDescriptor = Descriptor.ToProtocol(),
77
TotalBytes = TotalBytes,
78
TotalRecords = TotalRecords,
79
- Ordered = Ordered,
80
- AppMetadata = AppMetadata
+ Ordered = Ordered
81
};
82
+ if (AppMetadata != null)
83
+ {
84
+ response.AppMetadata = AppMetadata;
85
+ }
86
+
87
foreach(var endpoint in Endpoints)
88
{
89
response.Endpoint.Add(endpoint.ToProtocol());
0 commit comments