Skip to content

Commit 63004b0

Browse files
committed
Fix for H2 2.1.214
1 parent 3827344 commit 63004b0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/src/wheels/tests_testbox/specs/global/dbinfoSpec.cfc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)