( instanceOrEngine: Instance | InstanceResource | Engine )
| 249 | }; |
| 250 | |
| 251 | export const instanceV1SupportsExternalTable = ( |
| 252 | instanceOrEngine: Instance | InstanceResource | Engine |
| 253 | ) => { |
| 254 | const engine = engineOfInstanceV1(instanceOrEngine); |
| 255 | return [Engine.POSTGRES, Engine.HIVE].includes(engine); |
| 256 | }; |
| 257 | |
| 258 | export const instanceV1SupportsPackage = ( |
| 259 | instanceOrEngine: Instance | InstanceResource | Engine |
no test coverage detected