Skip to content

Commit cb83e6c

Browse files
committed
Fix buildbot failure
Debug printout should not attempt to print Ref_ptr_array value as %p.
1 parent 43c49d0 commit cb83e6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/sql_base.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7904,7 +7904,7 @@ bool setup_fields(THD *thd, Ref_ptr_array ref_pointer_array,
79047904
List_iterator<Item> it(fields);
79057905
bool save_is_item_list_lookup;
79067906
DBUG_ENTER("setup_fields");
7907-
DBUG_PRINT("enter", ("ref_pointer_array: %p", ref_pointer_array));
7907+
DBUG_PRINT("enter", ("ref_pointer_array: %p", ref_pointer_array.array()));
79087908

79097909
thd->mark_used_columns= mark_used_columns;
79107910
DBUG_PRINT("info", ("thd->mark_used_columns: %d", thd->mark_used_columns));

0 commit comments

Comments
 (0)