mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 19:37:16 +02:00
1) Removed to hard require
2) Fix variable scope for irix compiler ndb/src/kernel/blocks/dblqh/DblqhMain.cpp: Remove part of require ndb/test/src/NDBT_Tables.cpp: old compiler fix
This commit is contained in:
parent
d9e3b38ffd
commit
f755cf9e08
2 changed files with 10 additions and 2 deletions
|
|
@ -849,7 +849,7 @@ NDBT_Tables::createTable(Ndb* pNdb, const char* _name, bool _temp,
|
|||
}
|
||||
|
||||
Uint32 i = 0;
|
||||
for(Uint32 i = 0; indexes[i].m_table != 0; i++){
|
||||
for(i = 0; indexes[i].m_table != 0; i++){
|
||||
if(strcmp(indexes[i].m_table, _name) != 0)
|
||||
continue;
|
||||
Uint32 j = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue