@@ -96,7 +96,7 @@ component extends="wheels.Testbox" {
9696 local .ourTables = [];
9797 for (local .row in local .result ) {
9898 if (findNoCase (variables .prefix , local .row .table_name ) &&
99- local .row .table_type == " TABLE " ) {
99+ listFindNoCase ( " TABLE,BASE TABLE " , local .row .table_type ) ) {
100100 arrayAppend (local .ourTables , local .row );
101101 }
102102 }
@@ -115,7 +115,7 @@ component extends="wheels.Testbox" {
115115 local .ourTables = [];
116116 for (local .row in local .result ) {
117117 if (findNoCase (variables .prefix , local .row .table_name ) &&
118- (local .row .table_type == " TABLE " || local .row .table_type == " VIEW" )) {
118+ (listFindNoCase ( " TABLE,BASE TABLE " , local .row .table_type ) || local .row .table_type == " VIEW" )) {
119119 arrayAppend (local .ourTables , local .row );
120120 }
121121 }
@@ -134,7 +134,7 @@ component extends="wheels.Testbox" {
134134 local .ourTableNames = [];
135135 for (local .row in local .result ) {
136136 if (findNoCase (variables .prefix , local .row .table_name ) &&
137- (local .row .table_type == " TABLE " || local .row .table_type == " VIEW" )) {
137+ (listFindNoCase ( " TABLE,BASE TABLE " , local .row .table_type ) || local .row .table_type == " VIEW" )) {
138138 arrayAppend (local .ourTableNames , local .row .table_name );
139139 }
140140 }
0 commit comments