summaryrefslogtreecommitdiff
path: root/storage/perfschema/table_status_by_thread.cc
diff options
context:
space:
mode:
Diffstat (limited to 'storage/perfschema/table_status_by_thread.cc')
-rw-r--r--storage/perfschema/table_status_by_thread.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/storage/perfschema/table_status_by_thread.cc b/storage/perfschema/table_status_by_thread.cc
index 4c09dfc2b70..984a15b26eb 100644
--- a/storage/perfschema/table_status_by_thread.cc
+++ b/storage/perfschema/table_status_by_thread.cc
@@ -1,4 +1,4 @@
-/* Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
+/* Copyright (c) 2015, 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,
@@ -157,7 +157,7 @@ table_status_by_thread::rnd_pos(const void *pos)
return HA_ERR_RECORD_DELETED;
set_position(pos);
- DBUG_ASSERT(m_pos.m_index_1 < global_thread_container.get_row_count());
+ assert(m_pos.m_index_1 < global_thread_container.get_row_count());
PFS_thread *pfs_thread= global_thread_container.get(m_pos.m_index_1);
/*
@@ -210,7 +210,7 @@ int table_status_by_thread
return HA_ERR_RECORD_DELETED;
/* Set the null bits */
- DBUG_ASSERT(table->s->null_bytes == 1);
+ assert(table->s->null_bytes == 1);
buf[0]= 0;
for (; (f= *fields) ; fields++)
@@ -229,7 +229,7 @@ int table_status_by_thread
m_row.m_variable_value.set_field(f);
break;
default:
- DBUG_ASSERT(false);
+ assert(false);
}
}
}