Skip to content

Commit c3cb344

Browse files
SNOW-1488701 temporarily disable structured types support (#1019)
1 parent a0bbeb0 commit c3cb344

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Snowflake.Data/Client/SnowflakeDbDataReader.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ public override int GetValues(object[] values)
256256
return count;
257257
}
258258

259-
public T GetObject<T>(int ordinal)
259+
internal T GetObject<T>(int ordinal)
260260
where T : class, new()
261261
{
262262
try
@@ -279,7 +279,7 @@ public T GetObject<T>(int ordinal)
279279
}
280280
}
281281

282-
public T[] GetArray<T>(int ordinal)
282+
internal T[] GetArray<T>(int ordinal)
283283
{
284284
try
285285
{
@@ -302,7 +302,7 @@ public T[] GetArray<T>(int ordinal)
302302
}
303303
}
304304

305-
public Dictionary<TKey, TValue> GetMap<TKey, TValue>(int ordinal)
305+
internal Dictionary<TKey, TValue> GetMap<TKey, TValue>(int ordinal)
306306
{
307307
try
308308
{

0 commit comments

Comments
 (0)