Skip to content

Commit

Permalink
fix(oracle): remove hardcoded maxRows value (sequelize#15323)
Browse files Browse the repository at this point in the history
  • Loading branch information
nilabja-bhattacharya committed Nov 22, 2022
1 parent bc39fd6 commit 7885000
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/dialects/oracle/connection-manager.js
Expand Up @@ -35,7 +35,6 @@ export class OracleConnectionManager extends AbstractConnectionManager {
*
*/
extendLib() {
this.lib.maxRows = 1000;
if (this.sequelize.config && 'dialectOptions' in this.sequelize.config) {
const dialectOptions = this.sequelize.config.dialectOptions;
if (dialectOptions && 'maxRows' in dialectOptions) {
Expand Down

0 comments on commit 7885000

Please sign in to comment.