summaryrefslogtreecommitdiff
path: root/storage/perfschema/table_md_locks.cc
diff options
context:
space:
mode:
Diffstat (limited to 'storage/perfschema/table_md_locks.cc')
-rw-r--r--storage/perfschema/table_md_locks.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/storage/perfschema/table_md_locks.cc b/storage/perfschema/table_md_locks.cc
index a6bfdd25b68..d7e3423d9bc 100644
--- a/storage/perfschema/table_md_locks.cc
+++ b/storage/perfschema/table_md_locks.cc
@@ -1,4 +1,4 @@
-/* Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved.
+/* Copyright (c) 2012, 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,
@@ -155,7 +155,7 @@ int table_metadata_locks::read_row_values(TABLE *table,
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++)
@@ -197,7 +197,7 @@ int table_metadata_locks::read_row_values(TABLE *table,
f->set_null();
break;
default:
- DBUG_ASSERT(false);
+ assert(false);
}
}
}