We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd47d9b commit 13d4067Copy full SHA for 13d4067
1 file changed
test/test_integration_statement.rb
@@ -193,14 +193,14 @@ def test_committing_tx_with_statement_active
193
end
194
195
def test_long_running_statements_get_interrupted_when_statement_timeout_set
196
- @db.statement_timeout = 100
+ @db.statement_timeout = 10
197
assert_raises(SQLite3::InterruptException) do
198
@db.execute <<~SQL
199
WITH RECURSIVE r(i) AS (
200
VALUES(0)
201
UNION ALL
202
SELECT i FROM r
203
- LIMIT 1000000
+ LIMIT 100000
204
)
205
SELECT i FROM r ORDER BY i LIMIT 1;
206
SQL
0 commit comments