Skip to content

Commit e77bc32

Browse files
committed
Minor update for JSOn Duality View tests
1 parent f70ab9c commit e77bc32

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

test/jsonDualityViews3.js

+3
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,9 @@ describe('274 jsonDualityView3.js', function() {
159159
});
160160

161161
it('274.2 Create View on Virtual columns, UNUSED columns', async function() {
162+
// Virtual columns are supported only from Oracle Database 23.6 onwards
163+
if (connection.oracleServerVersion < 2306000000) this.skip();
164+
162165
// create the parts table
163166
const createTableParts = `
164167
CREATE TABLE parts(

test/jsonDualityViews4.js

+3
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,9 @@ describe('275. jsonDualityView4.js', function() {
198198
});
199199

200200
it('275.3 Test with virtual columns', async function() {
201+
// Virtual columns are supported only from Oracle Database 23.6 onwards
202+
if (connection.oracleServerVersion < 2306000000) this.skip();
203+
201204
// create table t1
202205
const sqlCreateTable = `
203206
CREATE TABLE t1 (

0 commit comments

Comments
 (0)