(connection)
| 68 | } |
| 69 | |
| 70 | function attachMSSQLUniqueId(connection) { |
| 71 | if (dialect === 'mssql') { |
| 72 | connection.dummyId = Math.random(); |
| 73 | } |
| 74 | |
| 75 | return connection; |
| 76 | } |
| 77 | |
| 78 | describe(Support.getTestDialectTeaser('Pooling'), () => { |
| 79 | if (dialect === 'sqlite' || process.env.DIALECT === 'postgres-native') return; |
no test coverage detected