( instanceOrEngine: Instance | InstanceResource | Engine )
| 376 | }; |
| 377 | |
| 378 | export const instanceAllowsSchemaScopedQuery = ( |
| 379 | instanceOrEngine: Instance | InstanceResource | Engine |
| 380 | ) => { |
| 381 | const engine = engineOfInstanceV1(instanceOrEngine); |
| 382 | return engine !== Engine.MSSQL && hasSchemaProperty(engine); |
| 383 | }; |
| 384 | |
| 385 | export const hasTableEngineProperty = ( |
| 386 | instanceOrEngine: Instance | InstanceResource | Engine |
no test coverage detected