Skip to content

Commit

Permalink
spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
David Coe committed Sep 4, 2023
1 parent a1e101f commit 050739c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions csharp/src/Apache.Arrow.Adbc/AdbcConnection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public virtual void Dispose()
/// </returns>
public virtual IArrowArrayStream GetInfo(List<int> codes);
{
throw AdbcException.NotImplemented("Connection does not support GetInfo");
throw AdbcException.NotImplemented("Connection does not support GetInfo");
}

/// <summary>
Expand Down Expand Up @@ -179,15 +179,15 @@ public enum GetObjectsDepth
/// </param>
public virtual Schema GetTableSchema(string catalog, string dbSchema, string tableName)
{
throw AdbcException.NotImplemented("Connection does not support GetTableSchema");
throw AdbcException.NotImplemented("Connection does not support GetTableSchema");
}

/// <summary>
/// Get a list of table types supported by the database.
/// </summary>
public virtual IArrowArrayStream GetTableTypes();
{
throw AdbcException.NotImplemented("Connection does not support GetTableTypes");
throw AdbcException.NotImplemented("Connection does not support GetTableTypes");
}

/// <summary>
Expand Down

0 comments on commit 050739c

Please sign in to comment.