Skip to content

Commit c59300f

Browse files
CopilotGiorgi
andauthored
Fix ObjectDisposedException when appender writes >2048 rows to enum column (#329)
* Initial plan * Fix ObjectDisposedException in appender with enum columns Agent-Logs-Url: https://github.com/Giorgi/DuckDB.NET/sessions/f1154148-ec4c-43f2-9dc5-abe1df1d707a Co-authored-by: Giorgi <580749+Giorgi@users.noreply.github.com> * Remove unnecessary empty Dispose override from EnumVectorDataWriter Agent-Logs-Url: https://github.com/Giorgi/DuckDB.NET/sessions/f1154148-ec4c-43f2-9dc5-abe1df1d707a Co-authored-by: Giorgi <580749+Giorgi@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Giorgi <580749+Giorgi@users.noreply.github.com>
1 parent 34cb1fe commit c59300f

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

DuckDB.NET.Data/DataChunk/Writer/EnumVectorDataWriter.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,4 @@ private static ulong ConvertEnumValueToUInt64<TEnum>(TEnum value) where TEnum :
6868
};
6969
}
7070

71-
public override void Dispose()
72-
{
73-
logicalType.Dispose();
74-
base.Dispose();
75-
}
7671
}

0 commit comments

Comments
 (0)