summaryrefslogtreecommitdiff
path: root/storage/perfschema/pfs_events_stages.cc
diff options
context:
space:
mode:
Diffstat (limited to 'storage/perfschema/pfs_events_stages.cc')
-rw-r--r--storage/perfschema/pfs_events_stages.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/storage/perfschema/pfs_events_stages.cc b/storage/perfschema/pfs_events_stages.cc
index e5a6b9a2007..087e5a1c55f 100644
--- a/storage/perfschema/pfs_events_stages.cc
+++ b/storage/perfschema/pfs_events_stages.cc
@@ -1,4 +1,4 @@
-/* Copyright (c) 2010, 2015, Oracle and/or its affiliates. All rights reserved.
+/* Copyright (c) 2010, 2021, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
@@ -101,7 +101,7 @@ void insert_events_stages_history(PFS_thread *thread, PFS_events_stages *stage)
if (unlikely(events_stages_history_per_thread == 0))
return;
- DBUG_ASSERT(thread->m_stages_history != NULL);
+ assert(thread->m_stages_history != NULL);
uint index= thread->m_stages_history_index;
@@ -133,7 +133,7 @@ void insert_events_stages_history_long(PFS_events_stages *stage)
if (unlikely(events_stages_history_long_size == 0))
return;
- DBUG_ASSERT(events_stages_history_long_array != NULL);
+ assert(events_stages_history_long_array != NULL);
uint index= PFS_atomic::add_u32(&events_stages_history_long_index.m_u32, 1);