Merge branch 'master' into chore/sqs-always-on
This commit is contained in:
commit
3b7d510d07
|
@ -71,8 +71,8 @@ describe.each([
|
|||
])("search (%s)", (name, dsProvider) => {
|
||||
const isInMemory = name === "in-memory"
|
||||
const isInternal = !dsProvider
|
||||
const isSql = !isInMemory
|
||||
const isOracle = name === DatabaseName.ORACLE
|
||||
const isSql = !isInMemory
|
||||
const config = setup.getConfig()
|
||||
|
||||
let datasource: Datasource | undefined
|
||||
|
@ -1619,6 +1619,7 @@ describe.each([
|
|||
})
|
||||
|
||||
isInternal &&
|
||||
!isInMemory &&
|
||||
describe("AI Column", () => {
|
||||
const UNEXISTING_AI_COLUMN = "Real LLM Response"
|
||||
|
||||
|
@ -3545,7 +3546,6 @@ describe.each([
|
|||
})
|
||||
|
||||
!isInternal &&
|
||||
!isInMemory &&
|
||||
describe("SQL injection", () => {
|
||||
const badStrings = [
|
||||
"1; DROP TABLE %table_name%;",
|
||||
|
|
|
@ -45,10 +45,10 @@ import { db, roles, features, context } from "@budibase/backend-core"
|
|||
describe.each([
|
||||
["sqs", undefined],
|
||||
[DatabaseName.POSTGRES, getDatasource(DatabaseName.POSTGRES)],
|
||||
[DatabaseName.MYSQL, getDatasource(DatabaseName.MYSQL)],
|
||||
[DatabaseName.SQL_SERVER, getDatasource(DatabaseName.SQL_SERVER)],
|
||||
[DatabaseName.MARIADB, getDatasource(DatabaseName.MARIADB)],
|
||||
[DatabaseName.ORACLE, getDatasource(DatabaseName.ORACLE)],
|
||||
// [DatabaseName.MYSQL, getDatasource(DatabaseName.MYSQL)],
|
||||
// [DatabaseName.SQL_SERVER, getDatasource(DatabaseName.SQL_SERVER)],
|
||||
// [DatabaseName.MARIADB, getDatasource(DatabaseName.MARIADB)],
|
||||
// [DatabaseName.ORACLE, getDatasource(DatabaseName.ORACLE)],
|
||||
])("/v2/views (%s)", (name, dsProvider) => {
|
||||
const config = setup.getConfig()
|
||||
const isInternal = name === "sqs"
|
||||
|
|
Loading…
Reference in New Issue