summaryrefslogtreecommitdiff
path: root/storage/perfschema/table_replication_applier_status.cc
diff options
context:
space:
mode:
Diffstat (limited to 'storage/perfschema/table_replication_applier_status.cc')
-rw-r--r--storage/perfschema/table_replication_applier_status.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/storage/perfschema/table_replication_applier_status.cc b/storage/perfschema/table_replication_applier_status.cc
index c258eb244fd..c95acf0adfb 100644
--- a/storage/perfschema/table_replication_applier_status.cc
+++ b/storage/perfschema/table_replication_applier_status.cc
@@ -1,5 +1,5 @@
/*
- Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
+ Copyright (c) 2013, 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,
@@ -187,7 +187,7 @@ int table_replication_applier_status::read_row_values(TABLE *table,
if (unlikely(! m_row_exists))
return HA_ERR_RECORD_DELETED;
- DBUG_ASSERT(table->s->null_bytes == 1);
+ assert(table->s->null_bytes == 1);
buf[0]= 0;
for (; (f= *fields) ; fields++)
@@ -212,7 +212,7 @@ int table_replication_applier_status::read_row_values(TABLE *table,
set_field_ulonglong(f, m_row.count_transactions_retries);
break;
default:
- DBUG_ASSERT(false);
+ assert(false);
}
}
}