Skip to content

Commit

Permalink
Fix undefined symbol?
Browse files Browse the repository at this point in the history
  • Loading branch information
ahuarte47 committed Apr 8, 2024
1 parent 9aef365 commit f5dbaaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spatial/src/spatial/gdal/functions/st_write_raster.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ static void Sink(ExecutionContext &context, FunctionData &bdata, GlobalFunctionD

if (type == core::GeoTypes::RASTER()) {
auto value = input.GetValue(col_idx, row_idx);
GDALDataset *dataset = reinterpret_cast<GDALDataset *>(value.GetValueUnsafe<uintptr_t>());
GDALDataset *dataset = reinterpret_cast<GDALDataset *>(value.GetValueUnsafe<uint64_t>());

auto raw_file_name = bind_data.file_path;
auto &client_ctx = GDALClientContextState::GetOrCreate(context.client);
Expand Down

0 comments on commit f5dbaaf

Please sign in to comment.