diff options
author | Chris Calender <chris@mariadb.com> | 2019-02-07 01:23:28 -0500 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2019-03-23 00:10:18 +0400 |
commit | 2d6e627a9f5f5d901dc02161d4cca8a6e72c0116 (patch) | |
tree | 04ce3ae2fb0455c475303132f311972fd1521191 /sql/table.cc | |
parent | 07c3e902100a92351977fc6fe08c3233ef92218c (diff) | |
download | mariadb-git-2d6e627a9f5f5d901dc02161d4cca8a6e72c0116.tar.gz |
Fix for MDEV-18276, typo in error message + all other occurrences of refering
Diffstat (limited to 'sql/table.cc')
-rw-r--r-- | sql/table.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/table.cc b/sql/table.cc index 7c5410aed84..2cf21c889e2 100644 --- a/sql/table.cc +++ b/sql/table.cc @@ -1129,7 +1129,7 @@ bool parse_vcol_defs(THD *thd, MEM_ROOT *mem_root, TABLE *table, if (check_constraint_ptr) *check_constraint_ptr= 0; - /* Check that expressions aren't refering to not yet initialized fields */ + /* Check that expressions aren't referring to not yet initialized fields */ for (field_ptr= table->field; *field_ptr; field_ptr++) { Field *field= *field_ptr; |