( instanceOrEngine: Instance | InstanceResource | Engine )
| 263 | }; |
| 264 | |
| 265 | export const instanceV1SupportsSequence = ( |
| 266 | instanceOrEngine: Instance | InstanceResource | Engine |
| 267 | ) => { |
| 268 | const engine = engineOfInstanceV1(instanceOrEngine); |
| 269 | return [Engine.POSTGRES].includes(engine); |
| 270 | }; |
| 271 | |
| 272 | export const instanceV1SupportsTrigger = ( |
| 273 | instanceOrEngine: Instance | InstanceResource | Engine |
no test coverage detected