summaryrefslogtreecommitdiff
path: root/storage/perfschema/table_socket_instances.cc
diff options
context:
space:
mode:
Diffstat (limited to 'storage/perfschema/table_socket_instances.cc')
-rw-r--r--storage/perfschema/table_socket_instances.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/storage/perfschema/table_socket_instances.cc b/storage/perfschema/table_socket_instances.cc
index b976f981848..ee1818b900b 100644
--- a/storage/perfschema/table_socket_instances.cc
+++ b/storage/perfschema/table_socket_instances.cc
@@ -1,4 +1,4 @@
-/* Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.
+/* Copyright (c) 2008, 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,
@@ -164,7 +164,7 @@ int table_socket_instances::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++)
@@ -198,7 +198,7 @@ int table_socket_instances::read_row_values(TABLE *table,
set_field_enum(f, m_row.m_state);
break;
default:
- DBUG_ASSERT(false);
+ assert(false);
}
}
}