Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support_specs/database/prevent_cross_joins_spec.rb')
-rw-r--r--spec/support_specs/database/prevent_cross_joins_spec.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/spec/support_specs/database/prevent_cross_joins_spec.rb b/spec/support_specs/database/prevent_cross_joins_spec.rb
index 0fbcd190c2c..efeabd15b58 100644
--- a/spec/support_specs/database/prevent_cross_joins_spec.rb
+++ b/spec/support_specs/database/prevent_cross_joins_spec.rb
@@ -39,6 +39,15 @@ RSpec.describe Database::PreventCrossJoins do
expect { main_and_ci_query_allowlist_nested }.not_to raise_error
end
end
+
+ context 'when there is a parser error' do
+ it 'does not raise parse PGQuery::ParseError' do
+ # Since this is in an invalid query it still raises from ActiveRecord
+ # but this tests that we rescue the PGQuery::ParseError which would
+ # have otherwise raised first
+ expect { ApplicationRecord.connection.execute('SELECT SELECT FROM SELECT') }.to raise_error(ActiveRecord::StatementInvalid)
+ end
+ end
end
end