Working on getting Oracle auto column imports working.

This commit is contained in:
Sam Rose 2024-07-31 17:37:16 +01:00
parent d6c5042aa6
commit 6b78e599f0
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -864,7 +864,7 @@ describe.each([
})
!isInternal &&
it("can update a row on an external table with a primary key", async () => {
it.only("can update a row on an external table with a primary key", async () => {
const tableName = uuid.v4().substring(0, 10)
await client!.schema.createTable(tableName, table => {
table.increments("id").primary()

View File

@ -98,7 +98,7 @@ const SCHEMA: Integration = {
},
}
const UNSUPPORTED_TYPES = ["BLOB", "CLOB", "NCLOB"]
const UNSUPPORTED_TYPES = ["BLOB", "NCLOB"]
const OracleContraintTypes = {
PRIMARY: "P",