( instanceOrEngine: Instance | InstanceResource | Engine )
| 242 | }; |
| 243 | |
| 244 | export const instanceV1AllowsReorderColumns = ( |
| 245 | instanceOrEngine: Instance | InstanceResource | Engine |
| 246 | ) => { |
| 247 | const engine = engineOfInstanceV1(instanceOrEngine); |
| 248 | return [Engine.MYSQL, Engine.TIDB].includes(engine); |
| 249 | }; |
| 250 | |
| 251 | export const instanceV1SupportsExternalTable = ( |
| 252 | instanceOrEngine: Instance | InstanceResource | Engine |
nothing calls this directly
no test coverage detected