(connection)
| 60 | } |
| 61 | |
| 62 | function attachMSSQLUniqueId(connection) { |
| 63 | if (dialect === 'mssql') { |
| 64 | connection.dummyId = Math.random(); |
| 65 | } |
| 66 | |
| 67 | return connection; |
| 68 | } |
| 69 | |
| 70 | describe(Support.getTestDialectTeaser('Pooling'), () => { |
| 71 | if (dialect === 'sqlite' || process.env.DIALECT === 'postgres-native') return; |
no test coverage detected