Skip to content

Commit 89ef3e1

Browse files
committed
feat(csharp): make DriverName virtual in SparkConnection to enable driver-specific identification
1 parent 83daafc commit 89ef3e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csharp/src/Drivers/Apache/Spark/SparkConnection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ namespace Apache.Arrow.Adbc.Drivers.Apache.Spark
2828
internal abstract class SparkConnection : HiveServer2Connection
2929
{
3030
protected const string ProductVersionDefault = "1.0.0";
31-
protected const string DriverName = "ADBC Spark Driver";
31+
protected virtual string DriverName => "ADBC Spark Driver";
3232
private const string ArrowVersion = "1.0.0";
3333
private readonly Lazy<string> _productVersion;
3434

0 commit comments

Comments
 (0)