File tree Expand file tree Collapse file tree
packages/@postgres-language-server/wasm/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -207,43 +207,18 @@ export interface FunctionArgs {
207207/**
208208 * `Behavior` describes the characteristics of the function. Is it deterministic? Does it changed due to side effects, and if so, when?
209209 */
210- export type Behavior =
211- | "Immutable"
212- | "Stable"
213- | "Volatile" ;
214- export type ProcKind =
215- | "Function"
216- | "Aggregate"
217- | "Window"
218- | "Procedure" ;
219- export type PolicyCommand =
220- | "Select"
221- | "Insert"
222- | "Update"
223- | "Delete"
224- | "All" ;
225- export type ReplicaIdentity =
226- | "Default"
227- | "Index"
228- | "Full"
229- | "Nothing" ;
210+ export type Behavior = "Immutable" | "Stable" | "Volatile" ;
211+ export type ProcKind = "Function" | "Aggregate" | "Window" | "Procedure" ;
212+ export type PolicyCommand = "Select" | "Insert" | "Update" | "Delete" | "All" ;
213+ export type ReplicaIdentity = "Default" | "Index" | "Full" | "Nothing" ;
230214export type TableKind =
231215 | "Ordinary"
232216 | "View"
233217 | "MaterializedView"
234218 | "Partitioned" ;
235- export type TriggerAffected =
236- | "Row"
237- | "Statement" ;
238- export type TriggerEvent =
239- | "Insert"
240- | "Delete"
241- | "Update"
242- | "Truncate" ;
243- export type TriggerTiming =
244- | "Before"
245- | "After"
246- | "Instead" ;
219+ export type TriggerAffected = "Row" | "Statement" ;
220+ export type TriggerEvent = "Insert" | "Delete" | "Update" | "Truncate" ;
221+ export type TriggerTiming = "Before" | "After" | "Instead" ;
247222export interface TypeAttributes {
248223 attrs : PostgresTypeAttribute [ ] ;
249224}
You can’t perform that action at this time.
0 commit comments