Skip to content

Commit

Permalink
SNOW-1488701 temporarily disable structured types support (#1019)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-knozderko authored Sep 5, 2024
1 parent a0bbeb0 commit c3cb344
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Snowflake.Data/Client/SnowflakeDbDataReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ public override int GetValues(object[] values)
return count;
}

public T GetObject<T>(int ordinal)
internal T GetObject<T>(int ordinal)
where T : class, new()
{
try
Expand All @@ -279,7 +279,7 @@ public T GetObject<T>(int ordinal)
}
}

public T[] GetArray<T>(int ordinal)
internal T[] GetArray<T>(int ordinal)
{
try
{
Expand All @@ -302,7 +302,7 @@ public T[] GetArray<T>(int ordinal)
}
}

public Dictionary<TKey, TValue> GetMap<TKey, TValue>(int ordinal)
internal Dictionary<TKey, TValue> GetMap<TKey, TValue>(int ordinal)
{
try
{
Expand Down

0 comments on commit c3cb344

Please sign in to comment.