Make sure that external tables preserve the BB_REFERNECE type, under the hood it is text/array, but it should continue to be treated correctly as its own indpendent type when updating Budibase tables (fetching).
This commit is contained in:
parent
afedd560fd
commit
635f33f81e
|
@ -1,7 +1,12 @@
|
||||||
import { SqlQuery, Table, SearchFilters, Datasource } from "@budibase/types"
|
import {
|
||||||
|
SqlQuery,
|
||||||
|
Table,
|
||||||
|
SearchFilters,
|
||||||
|
Datasource,
|
||||||
|
FieldType,
|
||||||
|
} from "@budibase/types"
|
||||||
import { DocumentType, SEPARATOR } from "../db/utils"
|
import { DocumentType, SEPARATOR } from "../db/utils"
|
||||||
import {
|
import {
|
||||||
FieldTypes,
|
|
||||||
BuildSchemaErrors,
|
BuildSchemaErrors,
|
||||||
InvalidColumns,
|
InvalidColumns,
|
||||||
NoEmptyFilterStrings,
|
NoEmptyFilterStrings,
|
||||||
|
@ -13,57 +18,57 @@ const ROW_ID_REGEX = /^\[.*]$/g
|
||||||
const ENCODED_SPACE = encodeURIComponent(" ")
|
const ENCODED_SPACE = encodeURIComponent(" ")
|
||||||
|
|
||||||
const SQL_NUMBER_TYPE_MAP = {
|
const SQL_NUMBER_TYPE_MAP = {
|
||||||
integer: FieldTypes.NUMBER,
|
integer: FieldType.NUMBER,
|
||||||
int: FieldTypes.NUMBER,
|
int: FieldType.NUMBER,
|
||||||
decimal: FieldTypes.NUMBER,
|
decimal: FieldType.NUMBER,
|
||||||
smallint: FieldTypes.NUMBER,
|
smallint: FieldType.NUMBER,
|
||||||
real: FieldTypes.NUMBER,
|
real: FieldType.NUMBER,
|
||||||
float: FieldTypes.NUMBER,
|
float: FieldType.NUMBER,
|
||||||
numeric: FieldTypes.NUMBER,
|
numeric: FieldType.NUMBER,
|
||||||
mediumint: FieldTypes.NUMBER,
|
mediumint: FieldType.NUMBER,
|
||||||
dec: FieldTypes.NUMBER,
|
dec: FieldType.NUMBER,
|
||||||
double: FieldTypes.NUMBER,
|
double: FieldType.NUMBER,
|
||||||
fixed: FieldTypes.NUMBER,
|
fixed: FieldType.NUMBER,
|
||||||
"double precision": FieldTypes.NUMBER,
|
"double precision": FieldType.NUMBER,
|
||||||
number: FieldTypes.NUMBER,
|
number: FieldType.NUMBER,
|
||||||
binary_float: FieldTypes.NUMBER,
|
binary_float: FieldType.NUMBER,
|
||||||
binary_double: FieldTypes.NUMBER,
|
binary_double: FieldType.NUMBER,
|
||||||
money: FieldTypes.NUMBER,
|
money: FieldType.NUMBER,
|
||||||
smallmoney: FieldTypes.NUMBER,
|
smallmoney: FieldType.NUMBER,
|
||||||
}
|
}
|
||||||
|
|
||||||
const SQL_DATE_TYPE_MAP = {
|
const SQL_DATE_TYPE_MAP = {
|
||||||
timestamp: FieldTypes.DATETIME,
|
timestamp: FieldType.DATETIME,
|
||||||
time: FieldTypes.DATETIME,
|
time: FieldType.DATETIME,
|
||||||
datetime: FieldTypes.DATETIME,
|
datetime: FieldType.DATETIME,
|
||||||
smalldatetime: FieldTypes.DATETIME,
|
smalldatetime: FieldType.DATETIME,
|
||||||
date: FieldTypes.DATETIME,
|
date: FieldType.DATETIME,
|
||||||
}
|
}
|
||||||
|
|
||||||
const SQL_DATE_ONLY_TYPES = ["date"]
|
const SQL_DATE_ONLY_TYPES = ["date"]
|
||||||
const SQL_TIME_ONLY_TYPES = ["time"]
|
const SQL_TIME_ONLY_TYPES = ["time"]
|
||||||
|
|
||||||
const SQL_STRING_TYPE_MAP = {
|
const SQL_STRING_TYPE_MAP = {
|
||||||
varchar: FieldTypes.STRING,
|
varchar: FieldType.STRING,
|
||||||
char: FieldTypes.STRING,
|
char: FieldType.STRING,
|
||||||
nchar: FieldTypes.STRING,
|
nchar: FieldType.STRING,
|
||||||
nvarchar: FieldTypes.STRING,
|
nvarchar: FieldType.STRING,
|
||||||
ntext: FieldTypes.STRING,
|
ntext: FieldType.STRING,
|
||||||
enum: FieldTypes.STRING,
|
enum: FieldType.STRING,
|
||||||
blob: FieldTypes.STRING,
|
blob: FieldType.STRING,
|
||||||
long: FieldTypes.STRING,
|
long: FieldType.STRING,
|
||||||
text: FieldTypes.STRING,
|
text: FieldType.STRING,
|
||||||
}
|
}
|
||||||
|
|
||||||
const SQL_BOOLEAN_TYPE_MAP = {
|
const SQL_BOOLEAN_TYPE_MAP = {
|
||||||
boolean: FieldTypes.BOOLEAN,
|
boolean: FieldType.BOOLEAN,
|
||||||
bit: FieldTypes.BOOLEAN,
|
bit: FieldType.BOOLEAN,
|
||||||
tinyint: FieldTypes.BOOLEAN,
|
tinyint: FieldType.BOOLEAN,
|
||||||
}
|
}
|
||||||
|
|
||||||
const SQL_MISC_TYPE_MAP = {
|
const SQL_MISC_TYPE_MAP = {
|
||||||
json: FieldTypes.JSON,
|
json: FieldType.JSON,
|
||||||
bigint: FieldTypes.BIGINT,
|
bigint: FieldType.BIGINT,
|
||||||
}
|
}
|
||||||
|
|
||||||
const SQL_TYPE_MAP = {
|
const SQL_TYPE_MAP = {
|
||||||
|
@ -154,7 +159,7 @@ export function breakRowIdField(_id: string | { _id: string }): any[] {
|
||||||
}
|
}
|
||||||
|
|
||||||
export function convertSqlType(type: string) {
|
export function convertSqlType(type: string) {
|
||||||
let foundType = FieldTypes.STRING
|
let foundType = FieldType.STRING
|
||||||
const lcType = type.toLowerCase()
|
const lcType = type.toLowerCase()
|
||||||
let matchingTypes = []
|
let matchingTypes = []
|
||||||
for (let [external, internal] of Object.entries(SQL_TYPE_MAP)) {
|
for (let [external, internal] of Object.entries(SQL_TYPE_MAP)) {
|
||||||
|
@ -169,7 +174,7 @@ export function convertSqlType(type: string) {
|
||||||
}).internal
|
}).internal
|
||||||
}
|
}
|
||||||
const schema: any = { type: foundType }
|
const schema: any = { type: foundType }
|
||||||
if (foundType === FieldTypes.DATETIME) {
|
if (foundType === FieldType.DATETIME) {
|
||||||
schema.dateOnly = SQL_DATE_ONLY_TYPES.includes(lcType)
|
schema.dateOnly = SQL_DATE_ONLY_TYPES.includes(lcType)
|
||||||
schema.timeOnly = SQL_TIME_ONLY_TYPES.includes(lcType)
|
schema.timeOnly = SQL_TIME_ONLY_TYPES.includes(lcType)
|
||||||
}
|
}
|
||||||
|
@ -212,7 +217,7 @@ export function shouldCopyRelationship(
|
||||||
tableIds: string[]
|
tableIds: string[]
|
||||||
) {
|
) {
|
||||||
return (
|
return (
|
||||||
column.type === FieldTypes.LINK &&
|
column.type === FieldType.LINK &&
|
||||||
column.tableId &&
|
column.tableId &&
|
||||||
tableIds.includes(column.tableId)
|
tableIds.includes(column.tableId)
|
||||||
)
|
)
|
||||||
|
@ -230,22 +235,23 @@ export function shouldCopySpecialColumn(
|
||||||
column: { type: string },
|
column: { type: string },
|
||||||
fetchedColumn: { type: string } | undefined
|
fetchedColumn: { type: string } | undefined
|
||||||
) {
|
) {
|
||||||
const isFormula = column.type === FieldTypes.FORMULA
|
const isFormula = column.type === FieldType.FORMULA
|
||||||
const specialTypes = [
|
const specialTypes = [
|
||||||
FieldTypes.OPTIONS,
|
FieldType.OPTIONS,
|
||||||
FieldTypes.LONGFORM,
|
FieldType.LONGFORM,
|
||||||
FieldTypes.ARRAY,
|
FieldType.ARRAY,
|
||||||
FieldTypes.FORMULA,
|
FieldType.FORMULA,
|
||||||
|
FieldType.BB_REFERENCE,
|
||||||
]
|
]
|
||||||
// column has been deleted, remove - formulas will never exist, always copy
|
// column has been deleted, remove - formulas will never exist, always copy
|
||||||
if (!isFormula && column && !fetchedColumn) {
|
if (!isFormula && column && !fetchedColumn) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
const fetchedIsNumber =
|
const fetchedIsNumber =
|
||||||
!fetchedColumn || fetchedColumn.type === FieldTypes.NUMBER
|
!fetchedColumn || fetchedColumn.type === FieldType.NUMBER
|
||||||
return (
|
return (
|
||||||
specialTypes.indexOf(column.type as FieldTypes) !== -1 ||
|
specialTypes.indexOf(column.type as FieldType) !== -1 ||
|
||||||
(fetchedIsNumber && column.type === FieldTypes.BOOLEAN)
|
(fetchedIsNumber && column.type === FieldType.BOOLEAN)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue