Browse Source

Merge pull request #7962 from nocodb/fix/formula-pg-right-and-left-functions

fix: Formula - RIGHT and LEFT methods argument type correction
nc-enable-calendar-view
Pranav C 8 months ago committed by GitHub
parent
commit
63eb6eeab1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 12
      packages/nocodb-sdk/src/lib/formulaHelpers.ts

12
packages/nocodb-sdk/src/lib/formulaHelpers.ts

@ -886,7 +886,7 @@ export const formulas: Record<string, FormulaMeta> = {
validation: {
args: {
rqd: 2,
type: FormulaDataTypes.STRING,
type: [FormulaDataTypes.STRING, FormulaDataTypes.NUMERIC],
},
},
description: 'Retrieve the last n characters from the input string.',
@ -901,7 +901,7 @@ export const formulas: Record<string, FormulaMeta> = {
validation: {
args: {
rqd: 2,
type: FormulaDataTypes.STRING,
type: [FormulaDataTypes.STRING, FormulaDataTypes.NUMERIC],
},
},
description: 'Retrieve the first n characters from the input string.',
@ -1066,10 +1066,12 @@ export const formulas: Record<string, FormulaMeta> = {
type: FormulaDataTypes.STRING,
},
},
description:
'Percent-encode the input parameter for use in URLs',
description: 'Percent-encode the input parameter for use in URLs',
syntax: 'URLENCODE(str)',
examples: ['URLENCODE("Hello, world") => "Hello%2C%20world"', 'URLENCODE({column1})'],
examples: [
'URLENCODE("Hello, world") => "Hello%2C%20world"',
'URLENCODE({column1})',
],
returnType: FormulaDataTypes.STRING,
},
WEEKDAY: {

Loading…
Cancel
Save