Skip to content

Commit

Permalink
QA for CORE-4144
Browse files Browse the repository at this point in the history
  • Loading branch information
pmakowski committed Dec 3, 2013
1 parent 740c8eb commit c83aa49
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions tests/bugs/core_4144.fbt
@@ -0,0 +1,31 @@
{
'id': 'bugs.core_4144',
'qmid': None,
'tracker_id': 'CORE-4144',
'title': 'Error "context already in use (BLR error)" when preparing a query with UNION',
'description': '',
'min_versions': '2.1.6',
'versions': [
{
'firebird_version': '2.1.6',
'platform': 'All',
'page_size': '4096',
'test_type': 'ISQL',
'test_script': """set heading off;
select n
from
(
select d.rdb$relation_id as n from rdb$database d
union all
select d.rdb$relation_id as n from rdb$database d
)
union all
select cast(1 as bigint) from rdb$database d;
""",
'expected_stdout': """128
128
1
"""
}
]
}

0 comments on commit c83aa49

Please sign in to comment.