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_11670/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-28 05:16:49.603
2025-06-28 05:16:49.609 act = <firebird.qa.plugin.Action object at [hex]>
2025-06-28 05:16:49.614 tmp_sql = PosixPath('/var/tmp/qa_2024/test_11670/gh_8061.tmp.sql')
2025-06-28 05:16:49.620 capsys = <_pytest.capture.CaptureFixture object at [hex]>
2025-06-28 05:16:49.626
2025-06-28 05:16:49.631 @pytest.mark.version('>=5.0.1')
2025-06-28 05:16:49.639 def test_1(act: Action, tmp_sql: Path, capsys):
2025-06-28 05:16:49.650 employee_data_sql = zipfile.Path(act.files_dir / 'standard_sample_databases.zip', at='sample-DB_-_firebird.sql')
2025-06-28 05:16:49.659 tmp_sql.write_bytes(employee_data_sql.read_bytes())
2025-06-28 05:16:49.666
2025-06-28 05:16:49.676 act.isql(switches = ['-q'], charset='utf8', input_file = tmp_sql, combine_output = True)
2025-06-28 05:16:49.688
2025-06-28 05:16:49.698 if act.return_code == 0:
2025-06-28 05:16:49.707
2025-06-28 05:16:49.717 srv_cfg = driver_config.register_server(name = f'srv_cfg_8061', config = '')
2025-06-28 05:16:49.728 db_cfg_name = f'db_cfg_8061'
2025-06-28 05:16:49.739 db_cfg_object = driver_config.register_database(name = db_cfg_name)
2025-06-28 05:16:49.748 db_cfg_object.server.value = srv_cfg.name
2025-06-28 05:16:49.755 db_cfg_object.database.value = str(act.db.db_path)
2025-06-28 05:16:49.762 if act.is_version('<6'):
2025-06-28 05:16:49.768 db_cfg_object.config.value = f"""
2025-06-28 05:16:49.775 SubQueryConversion = true
2025-06-28 05:16:49.785 """
2025-06-28 05:16:49.793
2025-06-28 05:16:49.800 with connect(db_cfg_name, user = act.db.user, password = act.db.password) as con:
2025-06-28 05:16:49.806 cur = con.cursor()
2025-06-28 05:16:49.816 for q_idx, q_tuple in query_map.items():
2025-06-28 05:16:49.826 test_sql, qry_comment = q_tuple[:2]
2025-06-28 05:16:49.833 ps = cur.prepare(test_sql)
2025-06-28 05:16:49.840 print(q_idx)
2025-06-28 05:16:49.854 print(test_sql)
2025-06-28 05:16:49.863 print(qry_comment)
2025-06-28 05:16:49.870 print( '\n'.join([replace_leading(s) for s in ps.detailed_plan.split('\n')]) )
2025-06-28 05:16:49.876 ps.free()
2025-06-28 05:16:49.881
2025-06-28 05:16:49.887 else:
2025-06-28 05:16:49.892 # If retcode !=0 then we can print the whole output of failed gbak:
2025-06-28 05:16:49.898 print('Initial script failed, check output:')
2025-06-28 05:16:49.908 for line in act.clean_stdout.splitlines():
2025-06-28 05:16:49.919 print(line)
2025-06-28 05:16:49.929 act.reset()
2025-06-28 05:16:49.937
2025-06-28 05:16:49.944 act.expected_stdout = f"""
2025-06-28 05:16:49.951 1000
2025-06-28 05:16:49.961 {query_map[1000][0]}
2025-06-28 05:16:49.971 {query_map[1000][1]}
2025-06-28 05:16:49.979 Select Expression
2025-06-28 05:16:49.987 ....-> Filter
2025-06-28 05:16:49.999 ........-> Hash Join (semi) (keys: 1, total key length: 4)
2025-06-28 05:16:50.009 ............-> Table "CUSTOMER" as "C1" Full Scan
2025-06-28 05:16:50.022 ............-> Record Buffer (record length: 33)
2025-06-28 05:16:50.032 ................-> Filter
2025-06-28 05:16:50.041 ....................-> Table "SALES" as "S1" Full Scan
2025-06-28 05:16:50.049
2025-06-28 05:16:50.056 2000
2025-06-28 05:16:50.063 {query_map[2000][0]}
2025-06-28 05:16:50.069 {query_map[2000][1]}
2025-06-28 05:16:50.082 Select Expression
2025-06-28 05:16:50.093 ....-> Filter
2025-06-28 05:16:50.102 ........-> Hash Join (semi) (keys: 1, total key length: 4)
2025-06-28 05:16:50.112 ............-> Table "CUSTOMER" as "C2" Full Scan
2025-06-28 05:16:50.123 ............-> Record Buffer (record length: 33)
2025-06-28 05:16:50.132 ................-> Filter
2025-06-28 05:16:50.140 ....................-> Table "SALES" as "S2" Full Scan
2025-06-28 05:16:50.146
2025-06-28 05:16:50.152 3000
2025-06-28 05:16:50.161 {query_map[3000][0]}
2025-06-28 05:16:50.171 {query_map[3000][1]}
2025-06-28 05:16:50.178 Select Expression
2025-06-28 05:16:50.190 ....-> Filter
2025-06-28 05:16:50.202 ........-> Hash Join (semi) (keys: 1, total key length: 4)
2025-06-28 05:16:50.211 ............-> Table "CUSTOMER" as "C3" Full Scan
2025-06-28 05:16:50.223 ............-> Record Buffer (record length: 58)
2025-06-28 05:16:50.233 ................-> Filter
2025-06-28 05:16:50.241 ....................-> Hash Join (semi) (keys: 1, total key length: 2)
2025-06-28 05:16:50.248 ........................-> Table "SALES" as "S3" Full Scan
2025-06-28 05:16:50.254 ........................-> Record Buffer (record length: 41)
2025-06-28 05:16:50.261 ............................-> Filter
2025-06-28 05:16:50.267 ................................-> Table "EMPLOYEE" as "X" Full Scan
2025-06-28 05:16:50.278
2025-06-28 05:16:50.285 4000
2025-06-28 05:16:50.292 {query_map[4000][0]}
2025-06-28 05:16:50.298 {query_map[4000][1]}
2025-06-28 05:16:50.307 Sub-query
2025-06-28 05:16:50.316 ....-> Filter
2025-06-28 05:16:50.323 ........-> Filter
2025-06-28 05:16:50.330 ............-> Table "EMPLOYEE" as "X" Access By ID
2025-06-28 05:16:50.341 ................-> Bitmap
2025-06-28 05:16:50.349 ....................-> Index "EMPLOYEE_PK" Unique Scan
2025-06-28 05:16:50.355 Select Expression
2025-06-28 05:16:50.363 ....-> Filter
2025-06-28 05:16:50.375 ........-> Hash Join (semi) (keys: 1, total key length: 4)
2025-06-28 05:16:50.385 ............-> Table "CUSTOMER" as "C4" Full Scan
2025-06-28 05:16:50.396 ............-> Record Buffer (record length: 33)
2025-06-28 05:16:50.402 ................-> Filter
2025-06-28 05:16:50.407 ....................-> Table "SALES" as "S4" Full Scan
2025-06-28 05:16:50.414
2025-06-28 05:16:50.419 """
2025-06-28 05:16:50.425 act.stdout = capsys.readouterr().out
2025-06-28 05:16:50.432 > assert act.clean_stdout == act.clean_expected_stdout
2025-06-28 05:16:50.440 E assert
2025-06-28 05:16:50.449 E + Initial script failed, check output:
2025-06-28 05:16:50.457 E + Statement failed, SQLSTATE = 22021
2025-06-28 05:16:50.464 E + unsuccessful metadata update
2025-06-28 05:16:50.472 E + -ALTER CHARACTER SET "SYSTEM"."UTF8" failed
2025-06-28 05:16:50.479 E + -COLLATION "SYSTEM"."CI_COLL" for CHARACTER SET "SYSTEM"."UTF8" is not defined
2025-06-28 05:16:50.485 E + After line 16 in file /var/tmp/qa_2024/test_11670/gh_8061.tmp.sql
2025-06-28 05:16:50.490 E - 1000
2025-06-28 05:16:50.495 E - select c1.cust_no
2025-06-28 05:16:50.500 E - from customer c1
2025-06-28 05:16:50.505 E - where exists (
2025-06-28 05:16:50.510 E - select 1 from sales s1 where s1.cust_no = c1.cust_no and s1.qty_ordered > 10
2025-06-28 05:16:50.516 E - )
2025-06-28 05:16:50.523 E - Check unnesting of single EXISTS
2025-06-28 05:16:50.534 E - Select Expression
2025-06-28 05:16:50.542 E - ....-> Filter
2025-06-28 05:16:50.549 E - ........-> Hash Join (semi)
2025-06-28 05:16:50.557 E - ............-> Table "CUSTOMER" as "C1" Full Scan
2025-06-28 05:16:50.564 E - ............-> Record Buffer (record length: NN)
2025-06-28 05:16:50.570 E - ................-> Filter
2025-06-28 05:16:50.581 E - ....................-> Table "SALES" as "S1" Full Scan
2025-06-28 05:16:50.592 E - 2000
2025-06-28 05:16:50.600 E - select c2.cust_no
2025-06-28 05:16:50.607 E - from customer c2
2025-06-28 05:16:50.614 E - where c2.cust_no = any (
2025-06-28 05:16:50.620 E - select s2.cust_no
2025-06-28 05:16:50.626 E - from sales s2
2025-06-28 05:16:50.631 E - where s2.qty_ordered > 10
2025-06-28 05:16:50.638 E - )
2025-06-28 05:16:50.644 E - Check unnesting of ANY
2025-06-28 05:16:50.650 E - Select Expression
2025-06-28 05:16:50.656 E - ....-> Filter
2025-06-28 05:16:50.662 E - ........-> Hash Join (semi)
2025-06-28 05:16:50.672 E - ............-> Table "CUSTOMER" as "C2" Full Scan
2025-06-28 05:16:50.682 E - ............-> Record Buffer (record length: NN)
2025-06-28 05:16:50.688 E - ................-> Filter
2025-06-28 05:16:50.695 E - ....................-> Table "SALES" as "S2" Full Scan
2025-06-28 05:16:50.700 E - 3000
2025-06-28 05:16:50.705 E - select c3.cust_no
2025-06-28 05:16:50.710 E - from customer c3
2025-06-28 05:16:50.715 E - where exists (
2025-06-28 05:16:50.722 E - select s3.cust_no
2025-06-28 05:16:50.729 E - from sales s3
2025-06-28 05:16:50.736 E - where s3.cust_no = c3.cust_no and
2025-06-28 05:16:50.742 E - exists (
2025-06-28 05:16:50.749 E - select x.emp_no
2025-06-28 05:16:50.760 E - from employee x
2025-06-28 05:16:50.771 E - where
2025-06-28 05:16:50.782 E - x.emp_no = s3.sales_rep
2025-06-28 05:16:50.792 E - and (
2025-06-28 05:16:50.800 E - x.dept_no > 0
2025-06-28 05:16:50.807 E - or
2025-06-28 05:16:50.814 E - x.job_code > ''
2025-06-28 05:16:50.821 E - )
2025-06-28 05:16:50.826 E - )
2025-06-28 05:16:50.831 E - )
2025-06-28 05:16:50.839 E - Check unnesting of two nested EXISTS
2025-06-28 05:16:50.848 E - Select Expression
2025-06-28 05:16:50.857 E - ....-> Filter
2025-06-28 05:16:50.863 E - ........-> Hash Join (semi)
2025-06-28 05:16:50.869 E - ............-> Table "CUSTOMER" as "C3" Full Scan
2025-06-28 05:16:50.875 E - ............-> Record Buffer (record length: NN)
2025-06-28 05:16:50.881 E - ................-> Filter
2025-06-28 05:16:50.887 E - ....................-> Hash Join (semi)
2025-06-28 05:16:50.895 E - ........................-> Table "SALES" as "S3" Full Scan
2025-06-28 05:16:50.907 E - ........................-> Record Buffer (record length: NN)
2025-06-28 05:16:50.917 E - ............................-> Filter
2025-06-28 05:16:50.927 E - ................................-> Table "EMPLOYEE" as "X" Full Scan
2025-06-28 05:16:50.936 E - 4000
2025-06-28 05:16:50.943 E - select c4.cust_no
2025-06-28 05:16:50.949 E - from customer c4
2025-06-28 05:16:50.955 E - where c4.cust_no in
2025-06-28 05:16:50.960 E - (
2025-06-28 05:16:50.965 E - select s4.cust_no
2025-06-28 05:16:50.971 E - from sales s4
2025-06-28 05:16:50.978 E - where
2025-06-28 05:16:50.989 E - s4.paid > ''
2025-06-28 05:16:50.996 E - or
2025-06-28 05:16:51.003 E - s4.sales_rep in (
2025-06-28 05:16:51.009 E - select x.emp_no
2025-06-28 05:16:51.014 E - from employee x
2025-06-28 05:16:51.019 E - where
2025-06-28 05:16:51.026 E - x.dept_no > 0
2025-06-28 05:16:51.035 E - or
2025-06-28 05:16:51.046 E - x.job_code > ''
2025-06-28 05:16:51.055 E - )
2025-06-28 05:16:51.062 E - )
2025-06-28 05:16:51.068 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-28 05:16:51.074 E - Sub-query
2025-06-28 05:16:51.079 E - ....-> Filter
2025-06-28 05:16:51.086 E - ........-> Filter
2025-06-28 05:16:51.096 E - ............-> Table "EMPLOYEE" as "X" Access By ID
2025-06-28 05:16:51.104 E - ................-> Bitmap
2025-06-28 05:16:51.110 E - ....................-> Index "EMPLOYEE_PK" Unique Scan
2025-06-28 05:16:51.116 E - Select Expression
2025-06-28 05:16:51.121 E - ....-> Filter
2025-06-28 05:16:51.127 E - ........-> Hash Join (semi)
2025-06-28 05:16:51.131 E - ............-> Table "CUSTOMER" as "C4" Full Scan
2025-06-28 05:16:51.136 E - ............-> Record Buffer (record length: NN)
2025-06-28 05:16:51.140 E - ................-> Filter
2025-06-28 05:16:51.145 E - ....................-> Table "SALES" as "S4" Full Scan
2025-06-28 05:16:51.152
2025-06-28 05:16:51.159 tests/bugs/gh_8061_test.py:232: AssertionError
2025-06-28 05:16:51.170 ---------------------------- Captured stdout setup -----------------------------
2025-06-28 05:16:51.179 Creating db: localhost:/var/tmp/qa_2024/test_11670/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_11670/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_11670/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
|