Skip to content
Permalink
Browse files
MDEV-22924 fixup: Replace C++11 nullptr
Only starting with MariaDB Server 10.4 we may depend on C++11.
  • Loading branch information
dr-m committed Sep 9, 2020
1 parent 64c8fa5 commit d44c0f4
Showing 1 changed file with 1 addition and 1 deletion.
@@ -3316,7 +3316,7 @@ class Row_sel_get_clust_rec_for_mysql
{
rec_offs vers_offs[REC_OFFS_HEADER_SIZE + MAX_REF_PARTS];
rec_offs_init(vers_offs);
mem_heap_t *heap= nullptr;
mem_heap_t *heap= NULL;

ut_ad(rec_offs_validate(cached_clust_rec, index, offsets));
ut_ad(index->first_user_field() <= rec_offs_n_fields(offsets));

0 comments on commit d44c0f4

Please sign in to comment.