@@ -111,22 +111,22 @@ public static class Value
111111 public static extern double DuckDBGetDouble ( DuckDBValue value ) ;
112112
113113 [ DllImport ( DuckDbLibrary , CallingConvention = CallingConvention . Cdecl , EntryPoint = "duckdb_get_date" ) ]
114- public static extern unsafe DuckDBDate DuckDBGetDate ( DuckDBValue value ) ;
114+ public static extern DuckDBDate DuckDBGetDate ( DuckDBValue value ) ;
115115
116116 [ DllImport ( DuckDbLibrary , CallingConvention = CallingConvention . Cdecl , EntryPoint = "duckdb_get_time" ) ]
117- public static extern unsafe DuckDBTime DuckDBGetTime ( DuckDBValue value ) ;
117+ public static extern DuckDBTime DuckDBGetTime ( DuckDBValue value ) ;
118118
119119 [ DllImport ( DuckDbLibrary , CallingConvention = CallingConvention . Cdecl , EntryPoint = "duckdb_get_time_tz" ) ]
120- public static extern unsafe DuckDBTimeTzStruct DuckDBGetTimeTz ( DuckDBValue value ) ;
120+ public static extern DuckDBTimeTzStruct DuckDBGetTimeTz ( DuckDBValue value ) ;
121121
122122 [ DllImport ( DuckDbLibrary , CallingConvention = CallingConvention . Cdecl , EntryPoint = "duckdb_get_timestamp" ) ]
123- public static extern unsafe DuckDBTimestampStruct DuckDBGetTimestamp ( DuckDBValue value ) ;
123+ public static extern DuckDBTimestampStruct DuckDBGetTimestamp ( DuckDBValue value ) ;
124124
125125 [ DllImport ( DuckDbLibrary , CallingConvention = CallingConvention . Cdecl , EntryPoint = "duckdb_get_interval" ) ]
126- public static extern unsafe DuckDBInterval DuckDBGetInterval ( DuckDBValue value ) ;
126+ public static extern DuckDBInterval DuckDBGetInterval ( DuckDBValue value ) ;
127127
128128 [ DllImport ( DuckDbLibrary , CallingConvention = CallingConvention . Cdecl , EntryPoint = "duckdb_get_value_type" ) ]
129- public static extern unsafe DuckDBLogicalType DuckDBGetValueType ( DuckDBValue value ) ;
129+ public static extern DuckDBLogicalType DuckDBGetValueType ( DuckDBValue value ) ;
130130
131131 [ DllImport ( DuckDbLibrary , CallingConvention = CallingConvention . Cdecl , EntryPoint = "duckdb_get_varchar" ) ]
132132 public static extern string DuckDBGetVarchar ( DuckDBValue value ) ;
0 commit comments