2 @message |
assert
+ Initial script failed, check output:
+ Statement failed, SQLSTATE = 22021
+ unsuccessful metadata update
+ -ALTER CHARACTER SET "SYSTEM"."UTF8" failed
+ -COLLATION "SYSTEM"."CI_COLL" for CHARACTER SET "SYSTEM"."UTF8" is not defined
+ After line 16 in file /var/tmp/qa_2024/test_11666/gh_8061.tmp.sql
- 1000
- select c1.cust_no
- from customer c1
- where exists (
- select 1 from sales s1 where s1.cust_no = c1.cust_no and s1.qty_ordered > 10
- )
- Check unnesting of single EXISTS
- Select Expression
- ....-> Filter
- ........-> Hash Join (semi)
- ............-> Table "CUSTOMER" as "C1" Full Scan
- ............-> Record Buffer (record length: NN)
- ................-> Filter
- ....................-> Table "SALES" as "S1" Full Scan
- 2000
- select c2.cust_no
- from customer c2
- where c2.cust_no = any (
- select s2.cust_no
- from sales s2
- where s2.qty_ordered > 10
- )
- Check unnesting of ANY
- Select Expression
- ....-> Filter
- ........-> Hash Join (semi)
- ............-> Table "CUSTOMER" as "C2" Full Scan
- ............-> Record Buffer (record length: NN)
- ................-> Filter
- ....................-> Table "SALES" as "S2" Full Scan
- 3000
- select c3.cust_no
- from customer c3
- where exists (
- select s3.cust_no
- from sales s3
- where s3.cust_no = c3.cust_no and
- exists (
- select x.emp_no
- from employee x
- where
- x.emp_no = s3.sales_rep
- and (
- x.dept_no > 0
- or
- x.job_code > ''
- )
- )
- )
- Check unnesting of two nested EXISTS
- Select Expression
- ....-> Filter
- ........-> Hash Join (semi)
- ............-> Table "CUSTOMER" as "C3" Full Scan
- ............-> Record Buffer (record length: NN)
- ................-> Filter
- ....................-> Hash Join (semi)
- ........................-> Table "SALES" as "S3" Full Scan
- ........................-> Record Buffer (record length: NN)
- ............................-> Filter
- ................................-> Table "EMPLOYEE" as "X" Full Scan
- 4000
- select c4.cust_no
- from customer c4
- where c4.cust_no in
- (
- select s4.cust_no
- from sales s4
- where
- s4.paid > ''
- or
- s4.sales_rep in (
- select x.emp_no
- from employee x
- where
- x.dept_no > 0
- or
- x.job_code > ''
- )
- )
- Check unnesting of IN (NOTE: inner sub-query cannot be unnested due to OR condition present, but the outer sub-query *can*; see also bugs/gh_8265_test.py)
- Sub-query
- ....-> Filter
- ........-> Filter
- ............-> Table "EMPLOYEE" as "X" Access By ID
- ................-> Bitmap
- ....................-> Index "EMPLOYEE_PK" Unique Scan
- Select Expression
- ....-> Filter
- ........-> Hash Join (semi)
- ............-> Table "CUSTOMER" as "C4" Full Scan
- ............-> Record Buffer (record length: NN)
- ................-> Filter
- ....................-> Table "SALES" as "S4" Full Scan
LOG DETAILS:
2025-06-26 05:22:07.711
2025-06-26 05:22:07.717 act = <firebird.qa.plugin.Action object at [hex]>
2025-06-26 05:22:07.727 tmp_sql = PosixPath('/var/tmp/qa_2024/test_11666/gh_8061.tmp.sql')
2025-06-26 05:22:07.737 capsys = <_pytest.capture.CaptureFixture object at [hex]>
2025-06-26 05:22:07.744
2025-06-26 05:22:07.750 @pytest.mark.version('>=5.0.1')
2025-06-26 05:22:07.762 def test_1(act: Action, tmp_sql: Path, capsys):
2025-06-26 05:22:07.773 employee_data_sql = zipfile.Path(act.files_dir / 'standard_sample_databases.zip', at='sample-DB_-_firebird.sql')
2025-06-26 05:22:07.782 tmp_sql.write_bytes(employee_data_sql.read_bytes())
2025-06-26 05:22:07.793
2025-06-26 05:22:07.802 act.isql(switches = ['-q'], charset='utf8', input_file = tmp_sql, combine_output = True)
2025-06-26 05:22:07.809
2025-06-26 05:22:07.817 if act.return_code == 0:
2025-06-26 05:22:07.824
2025-06-26 05:22:07.831 srv_cfg = driver_config.register_server(name = f'srv_cfg_8061', config = '')
2025-06-26 05:22:07.837 db_cfg_name = f'db_cfg_8061'
2025-06-26 05:22:07.843 db_cfg_object = driver_config.register_database(name = db_cfg_name)
2025-06-26 05:22:07.848 db_cfg_object.server.value = srv_cfg.name
2025-06-26 05:22:07.855 db_cfg_object.database.value = str(act.db.db_path)
2025-06-26 05:22:07.860 if act.is_version('<6'):
2025-06-26 05:22:07.866 db_cfg_object.config.value = f"""
2025-06-26 05:22:07.880 SubQueryConversion = true
2025-06-26 05:22:07.889 """
2025-06-26 05:22:07.894
2025-06-26 05:22:07.903 with connect(db_cfg_name, user = act.db.user, password = act.db.password) as con:
2025-06-26 05:22:07.913 cur = con.cursor()
2025-06-26 05:22:07.922 for q_idx, q_tuple in query_map.items():
2025-06-26 05:22:07.931 test_sql, qry_comment = q_tuple[:2]
2025-06-26 05:22:07.943 ps = cur.prepare(test_sql)
2025-06-26 05:22:07.951 print(q_idx)
2025-06-26 05:22:07.959 print(test_sql)
2025-06-26 05:22:07.967 print(qry_comment)
2025-06-26 05:22:07.977 print( '\n'.join([replace_leading(s) for s in ps.detailed_plan.split('\n')]) )
2025-06-26 05:22:07.987 ps.free()
2025-06-26 05:22:07.996
2025-06-26 05:22:08.005 else:
2025-06-26 05:22:08.017 # If retcode !=0 then we can print the whole output of failed gbak:
2025-06-26 05:22:08.030 print('Initial script failed, check output:')
2025-06-26 05:22:08.041 for line in act.clean_stdout.splitlines():
2025-06-26 05:22:08.049 print(line)
2025-06-26 05:22:08.056 act.reset()
2025-06-26 05:22:08.061
2025-06-26 05:22:08.067 act.expected_stdout = f"""
2025-06-26 05:22:08.074 1000
2025-06-26 05:22:08.085 {query_map[1000][0]}
2025-06-26 05:22:08.094 {query_map[1000][1]}
2025-06-26 05:22:08.099 Select Expression
2025-06-26 05:22:08.104 ....-> Filter
2025-06-26 05:22:08.110 ........-> Hash Join (semi) (keys: 1, total key length: 4)
2025-06-26 05:22:08.117 ............-> Table "CUSTOMER" as "C1" Full Scan
2025-06-26 05:22:08.122 ............-> Record Buffer (record length: 33)
2025-06-26 05:22:08.134 ................-> Filter
2025-06-26 05:22:08.145 ....................-> Table "SALES" as "S1" Full Scan
2025-06-26 05:22:08.152
2025-06-26 05:22:08.162 2000
2025-06-26 05:22:08.172 {query_map[2000][0]}
2025-06-26 05:22:08.179 {query_map[2000][1]}
2025-06-26 05:22:08.187 Select Expression
2025-06-26 05:22:08.198 ....-> Filter
2025-06-26 05:22:08.207 ........-> Hash Join (semi) (keys: 1, total key length: 4)
2025-06-26 05:22:08.215 ............-> Table "CUSTOMER" as "C2" Full Scan
2025-06-26 05:22:08.223 ............-> Record Buffer (record length: 33)
2025-06-26 05:22:08.230 ................-> Filter
2025-06-26 05:22:08.242 ....................-> Table "SALES" as "S2" Full Scan
2025-06-26 05:22:08.252
2025-06-26 05:22:08.261 3000
2025-06-26 05:22:08.274 {query_map[3000][0]}
2025-06-26 05:22:08.284 {query_map[3000][1]}
2025-06-26 05:22:08.295 Select Expression
2025-06-26 05:22:08.306 ....-> Filter
2025-06-26 05:22:08.316 ........-> Hash Join (semi) (keys: 1, total key length: 4)
2025-06-26 05:22:08.324 ............-> Table "CUSTOMER" as "C3" Full Scan
2025-06-26 05:22:08.331 ............-> Record Buffer (record length: 58)
2025-06-26 05:22:08.337 ................-> Filter
2025-06-26 05:22:08.343 ....................-> Hash Join (semi) (keys: 1, total key length: 2)
2025-06-26 05:22:08.352 ........................-> Table "SALES" as "S3" Full Scan
2025-06-26 05:22:08.363 ........................-> Record Buffer (record length: 41)
2025-06-26 05:22:08.375 ............................-> Filter
2025-06-26 05:22:08.385 ................................-> Table "EMPLOYEE" as "X" Full Scan
2025-06-26 05:22:08.396
2025-06-26 05:22:08.406 4000
2025-06-26 05:22:08.415 {query_map[4000][0]}
2025-06-26 05:22:08.423 {query_map[4000][1]}
2025-06-26 05:22:08.434 Sub-query
2025-06-26 05:22:08.442 ....-> Filter
2025-06-26 05:22:08.453 ........-> Filter
2025-06-26 05:22:08.462 ............-> Table "EMPLOYEE" as "X" Access By ID
2025-06-26 05:22:08.470 ................-> Bitmap
2025-06-26 05:22:08.480 ....................-> Index "EMPLOYEE_PK" Unique Scan
2025-06-26 05:22:08.492 Select Expression
2025-06-26 05:22:08.503 ....-> Filter
2025-06-26 05:22:08.515 ........-> Hash Join (semi) (keys: 1, total key length: 4)
2025-06-26 05:22:08.525 ............-> Table "CUSTOMER" as "C4" Full Scan
2025-06-26 05:22:08.537 ............-> Record Buffer (record length: 33)
2025-06-26 05:22:08.548 ................-> Filter
2025-06-26 05:22:08.559 ....................-> Table "SALES" as "S4" Full Scan
2025-06-26 05:22:08.568
2025-06-26 05:22:08.577 """
2025-06-26 05:22:08.583 act.stdout = capsys.readouterr().out
2025-06-26 05:22:08.589 > assert act.clean_stdout == act.clean_expected_stdout
2025-06-26 05:22:08.595 E assert
2025-06-26 05:22:08.602 E + Initial script failed, check output:
2025-06-26 05:22:08.608 E + Statement failed, SQLSTATE = 22021
2025-06-26 05:22:08.614 E + unsuccessful metadata update
2025-06-26 05:22:08.619 E + -ALTER CHARACTER SET "SYSTEM"."UTF8" failed
2025-06-26 05:22:08.629 E + -COLLATION "SYSTEM"."CI_COLL" for CHARACTER SET "SYSTEM"."UTF8" is not defined
2025-06-26 05:22:08.641 E + After line 16 in file /var/tmp/qa_2024/test_11666/gh_8061.tmp.sql
2025-06-26 05:22:08.650 E - 1000
2025-06-26 05:22:08.661 E - select c1.cust_no
2025-06-26 05:22:08.670 E - from customer c1
2025-06-26 05:22:08.682 E - where exists (
2025-06-26 05:22:08.693 E - select 1 from sales s1 where s1.cust_no = c1.cust_no and s1.qty_ordered > 10
2025-06-26 05:22:08.701 E - )
2025-06-26 05:22:08.708 E - Check unnesting of single EXISTS
2025-06-26 05:22:08.713 E - Select Expression
2025-06-26 05:22:08.723 E - ....-> Filter
2025-06-26 05:22:08.736 E - ........-> Hash Join (semi)
2025-06-26 05:22:08.745 E - ............-> Table "CUSTOMER" as "C1" Full Scan
2025-06-26 05:22:08.752 E - ............-> Record Buffer (record length: NN)
2025-06-26 05:22:08.759 E - ................-> Filter
2025-06-26 05:22:08.764 E - ....................-> Table "SALES" as "S1" Full Scan
2025-06-26 05:22:08.769 E - 2000
2025-06-26 05:22:08.775 E - select c2.cust_no
2025-06-26 05:22:08.784 E - from customer c2
2025-06-26 05:22:08.795 E - where c2.cust_no = any (
2025-06-26 05:22:08.803 E - select s2.cust_no
2025-06-26 05:22:08.811 E - from sales s2
2025-06-26 05:22:08.818 E - where s2.qty_ordered > 10
2025-06-26 05:22:08.824 E - )
2025-06-26 05:22:08.829 E - Check unnesting of ANY
2025-06-26 05:22:08.835 E - Select Expression
2025-06-26 05:22:08.840 E - ....-> Filter
2025-06-26 05:22:08.846 E - ........-> Hash Join (semi)
2025-06-26 05:22:08.856 E - ............-> Table "CUSTOMER" as "C2" Full Scan
2025-06-26 05:22:08.866 E - ............-> Record Buffer (record length: NN)
2025-06-26 05:22:08.872 E - ................-> Filter
2025-06-26 05:22:08.878 E - ....................-> Table "SALES" as "S2" Full Scan
2025-06-26 05:22:08.883 E - 3000
2025-06-26 05:22:08.892 E - select c3.cust_no
2025-06-26 05:22:08.903 E - from customer c3
2025-06-26 05:22:08.911 E - where exists (
2025-06-26 05:22:08.919 E - select s3.cust_no
2025-06-26 05:22:08.930 E - from sales s3
2025-06-26 05:22:08.938 E - where s3.cust_no = c3.cust_no and
2025-06-26 05:22:08.945 E - exists (
2025-06-26 05:22:08.951 E - select x.emp_no
2025-06-26 05:22:08.958 E - from employee x
2025-06-26 05:22:08.963 E - where
2025-06-26 05:22:08.970 E - x.emp_no = s3.sales_rep
2025-06-26 05:22:08.982 E - and (
2025-06-26 05:22:08.990 E - x.dept_no > 0
2025-06-26 05:22:08.998 E - or
2025-06-26 05:22:09.010 E - x.job_code > ''
2025-06-26 05:22:09.019 E - )
2025-06-26 05:22:09.027 E - )
2025-06-26 05:22:09.033 E - )
2025-06-26 05:22:09.038 E - Check unnesting of two nested EXISTS
2025-06-26 05:22:09.043 E - Select Expression
2025-06-26 05:22:09.048 E - ....-> Filter
2025-06-26 05:22:09.053 E - ........-> Hash Join (semi)
2025-06-26 05:22:09.059 E - ............-> Table "CUSTOMER" as "C3" Full Scan
2025-06-26 05:22:09.064 E - ............-> Record Buffer (record length: NN)
2025-06-26 05:22:09.070 E - ................-> Filter
2025-06-26 05:22:09.075 E - ....................-> Hash Join (semi)
2025-06-26 05:22:09.081 E - ........................-> Table "SALES" as "S3" Full Scan
2025-06-26 05:22:09.086 E - ........................-> Record Buffer (record length: NN)
2025-06-26 05:22:09.092 E - ............................-> Filter
2025-06-26 05:22:09.098 E - ................................-> Table "EMPLOYEE" as "X" Full Scan
2025-06-26 05:22:09.106 E - 4000
2025-06-26 05:22:09.114 E - select c4.cust_no
2025-06-26 05:22:09.122 E - from customer c4
2025-06-26 05:22:09.133 E - where c4.cust_no in
2025-06-26 05:22:09.142 E - (
2025-06-26 05:22:09.151 E - select s4.cust_no
2025-06-26 05:22:09.160 E - from sales s4
2025-06-26 05:22:09.168 E - where
2025-06-26 05:22:09.175 E - s4.paid > ''
2025-06-26 05:22:09.186 E - or
2025-06-26 05:22:09.193 E - s4.sales_rep in (
2025-06-26 05:22:09.198 E - select x.emp_no
2025-06-26 05:22:09.204 E - from employee x
2025-06-26 05:22:09.210 E - where
2025-06-26 05:22:09.215 E - x.dept_no > 0
2025-06-26 05:22:09.222 E - or
2025-06-26 05:22:09.227 E - x.job_code > ''
2025-06-26 05:22:09.234 E - )
2025-06-26 05:22:09.245 E - )
2025-06-26 05:22:09.253 E - Check unnesting of IN (NOTE: inner sub-query cannot be unnested due to OR condition present, but the outer sub-query *can*; see also bugs/gh_8265_test.py)
2025-06-26 05:22:09.259 E - Sub-query
2025-06-26 05:22:09.265 E - ....-> Filter
2025-06-26 05:22:09.269 E - ........-> Filter
2025-06-26 05:22:09.277 E - ............-> Table "EMPLOYEE" as "X" Access By ID
2025-06-26 05:22:09.286 E - ................-> Bitmap
2025-06-26 05:22:09.295 E - ....................-> Index "EMPLOYEE_PK" Unique Scan
2025-06-26 05:22:09.303 E - Select Expression
2025-06-26 05:22:09.315 E - ....-> Filter
2025-06-26 05:22:09.323 E - ........-> Hash Join (semi)
2025-06-26 05:22:09.330 E - ............-> Table "CUSTOMER" as "C4" Full Scan
2025-06-26 05:22:09.336 E - ............-> Record Buffer (record length: NN)
2025-06-26 05:22:09.344 E - ................-> Filter
2025-06-26 05:22:09.352 E - ....................-> Table "SALES" as "S4" Full Scan
2025-06-26 05:22:09.365
2025-06-26 05:22:09.377 tests/bugs/gh_8061_test.py:232: AssertionError
2025-06-26 05:22:09.389 ---------------------------- Captured stdout setup -----------------------------
2025-06-26 05:22:09.401 Creating db: localhost:/var/tmp/qa_2024/test_11666/test.fdb [page_size=None, sql_dialect=None, charset='NONE', user=SYSDBA, password=masterkey]
|
3 #text |
act = <firebird.qa.plugin.Action pytest object at [hex]>
tmp_sql = PosixPath('/var/tmp/qa_2024/test_11666/gh_8061.tmp.sql')
capsys = <_pytest.capture.CaptureFixture pytest object at [hex]>
@pytest.mark.version('>=5.0.1')
def test_1(act: Action, tmp_sql: Path, capsys):
employee_data_sql = zipfile.Path(act.files_dir / 'standard_sample_databases.zip', at='sample-DB_-_firebird.sql')
tmp_sql.write_bytes(employee_data_sql.read_bytes())
act.isql(switches = ['-q'], charset='utf8', input_file = tmp_sql, combine_output = True)
if act.return_code == 0:
srv_cfg = driver_config.register_server(name = f'srv_cfg_8061', config = '')
db_cfg_name = f'db_cfg_8061'
db_cfg_object = driver_config.register_database(name = db_cfg_name)
db_cfg_object.server.value = srv_cfg.name
db_cfg_object.database.value = str(act.db.db_path)
if act.is_version('<6'):
db_cfg_object.config.value = f"""
SubQueryConversion = true
"""
with connect(db_cfg_name, user = act.db.user, password = act.db.password) as con:
cur = con.cursor()
for q_idx, q_tuple in query_map.items():
test_sql, qry_comment = q_tuple[:2]
ps = cur.prepare(test_sql)
print(q_idx)
print(test_sql)
print(qry_comment)
print( '\n'.join([replace_leading(s) for s in ps.detailed_plan.split('\n')]) )
ps.free()
else:
# If retcode !=0 then we can print the whole output of failed gbak:
print('Initial script failed, check output:')
for line in act.clean_stdout.splitlines():
print(line)
act.reset()
act.expected_stdout = f"""
1000
{query_map[1000][0]}
{query_map[1000][1]}
Select Expression
....-> Filter
........-> Hash Join (semi) (keys: 1, total key length: 4)
............-> Table "CUSTOMER" as "C1" Full Scan
............-> Record Buffer (record length: 33)
................-> Filter
....................-> Table "SALES" as "S1" Full Scan
2000
{query_map[2000][0]}
{query_map[2000][1]}
Select Expression
....-> Filter
........-> Hash Join (semi) (keys: 1, total key length: 4)
............-> Table "CUSTOMER" as "C2" Full Scan
............-> Record Buffer (record length: 33)
................-> Filter
....................-> Table "SALES" as "S2" Full Scan
3000
{query_map[3000][0]}
{query_map[3000][1]}
Select Expression
....-> Filter
........-> Hash Join (semi) (keys: 1, total key length: 4)
............-> Table "CUSTOMER" as "C3" Full Scan
............-> Record Buffer (record length: 58)
................-> Filter
....................-> Hash Join (semi) (keys: 1, total key length: 2)
........................-> Table "SALES" as "S3" Full Scan
........................-> Record Buffer (record length: 41)
............................-> Filter
................................-> Table "EMPLOYEE" as "X" Full Scan
4000
{query_map[4000][0]}
{query_map[4000][1]}
Sub-query
....-> Filter
........-> Filter
............-> Table "EMPLOYEE" as "X" Access By ID
................-> Bitmap
....................-> Index "EMPLOYEE_PK" Unique Scan
Select Expression
....-> Filter
........-> Hash Join (semi) (keys: 1, total key length: 4)
............-> Table "CUSTOMER" as "C4" Full Scan
............-> Record Buffer (record length: 33)
................-> Filter
....................-> Table "SALES" as "S4" Full Scan
"""
act.stdout = capsys.readouterr().out
> assert act.clean_stdout == act.clean_expected_stdout
E assert
E + Initial script failed, check output:
E + Statement failed, SQLSTATE = 22021
E + unsuccessful metadata update
E + -ALTER CHARACTER SET "SYSTEM"."UTF8" failed
E + -COLLATION "SYSTEM"."CI_COLL" for CHARACTER SET "SYSTEM"."UTF8" is not defined
E + After line 16 in file /var/tmp/qa_2024/test_11666/gh_8061.tmp.sql
E - 1000
E - select c1.cust_no
E - from customer c1
E - where exists (
E - select 1 from sales s1 where s1.cust_no = c1.cust_no and s1.qty_ordered > 10
E - )
E - Check unnesting of single EXISTS
E - Select Expression
E - ....-> Filter
E - ........-> Hash Join (semi)
E - ............-> Table "CUSTOMER" as "C1" Full Scan
E - ............-> Record Buffer (record length: NN)
E - ................-> Filter
E - ....................-> Table "SALES" as "S1" Full Scan
E - 2000
E - select c2.cust_no
E - from customer c2
E - where c2.cust_no = any (
E - select s2.cust_no
E - from sales s2
E - where s2.qty_ordered > 10
E - )
E - Check unnesting of ANY
E - Select Expression
E - ....-> Filter
E - ........-> Hash Join (semi)
E - ............-> Table "CUSTOMER" as "C2" Full Scan
E - ............-> Record Buffer (record length: NN)
E - ................-> Filter
E - ....................-> Table "SALES" as "S2" Full Scan
E - 3000
E - select c3.cust_no
E - from customer c3
E - where exists (
E - select s3.cust_no
E - from sales s3
E - where s3.cust_no = c3.cust_no and
E - exists (
E - select x.emp_no
E - from employee x
E - where
E - x.emp_no = s3.sales_rep
E - and (
E - x.dept_no > 0
E - or
E - x.job_code > ''
E - )
E - )
E - )
E - Check unnesting of two nested EXISTS
E - Select Expression
E - ....-> Filter
E - ........-> Hash Join (semi)
E - ............-> Table "CUSTOMER" as "C3" Full Scan
E - ............-> Record Buffer (record length: NN)
E - ................-> Filter
E - ....................-> Hash Join (semi)
E - ........................-> Table "SALES" as "S3" Full Scan
E - ........................-> Record Buffer (record length: NN)
E - ............................-> Filter
E - ................................-> Table "EMPLOYEE" as "X" Full Scan
E - 4000
E - select c4.cust_no
E - from customer c4
E - where c4.cust_no in
E - (
E - select s4.cust_no
E - from sales s4
E - where
E - s4.paid > ''
E - or
E - s4.sales_rep in (
E - select x.emp_no
E - from employee x
E - where
E - x.dept_no > 0
E - or
E - x.job_code > ''
E - )
E - )
E - Check unnesting of IN (NOTE: inner sub-query cannot be unnested due to OR condition present, but the outer sub-query *can*; see also bugs/gh_8265_test.py)
E - Sub-query
E - ....-> Filter
E - ........-> Filter
E - ............-> Table "EMPLOYEE" as "X" Access By ID
E - ................-> Bitmap
E - ....................-> Index "EMPLOYEE_PK" Unique Scan
E - Select Expression
E - ....-> Filter
E - ........-> Hash Join (semi)
E - ............-> Table "CUSTOMER" as "C4" Full Scan
E - ............-> Record Buffer (record length: NN)
E - ................-> Filter
E - ....................-> Table "SALES" as "S4" Full Scan
tests/bugs/gh_8061_test.py:232: AssertionError
|