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_11675/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-30 05:40:59.825
2025-06-30 05:40:59.835 act = <firebird.qa.plugin.Action object at [hex]>
2025-06-30 05:40:59.843 tmp_sql = PosixPath('/var/tmp/qa_2024/test_11675/gh_8061.tmp.sql')
2025-06-30 05:40:59.849 capsys = <_pytest.capture.CaptureFixture object at [hex]>
2025-06-30 05:40:59.856
2025-06-30 05:40:59.863 @pytest.mark.version('>=5.0.1')
2025-06-30 05:40:59.870 def test_1(act: Action, tmp_sql: Path, capsys):
2025-06-30 05:40:59.881 employee_data_sql = zipfile.Path(act.files_dir / 'standard_sample_databases.zip', at='sample-DB_-_firebird.sql')
2025-06-30 05:40:59.889 tmp_sql.write_bytes(employee_data_sql.read_bytes())
2025-06-30 05:40:59.900
2025-06-30 05:40:59.910 act.isql(switches = ['-q'], charset='utf8', input_file = tmp_sql, combine_output = True)
2025-06-30 05:40:59.918
2025-06-30 05:40:59.931 if act.return_code == 0:
2025-06-30 05:40:59.943
2025-06-30 05:40:59.952 srv_cfg = driver_config.register_server(name = f'srv_cfg_8061', config = '')
2025-06-30 05:40:59.961 db_cfg_name = f'db_cfg_8061'
2025-06-30 05:40:59.968 db_cfg_object = driver_config.register_database(name = db_cfg_name)
2025-06-30 05:40:59.974 db_cfg_object.server.value = srv_cfg.name
2025-06-30 05:40:59.983 db_cfg_object.database.value = str(act.db.db_path)
2025-06-30 05:40:59.990 if act.is_version('<6'):
2025-06-30 05:40:59.997 db_cfg_object.config.value = f"""
2025-06-30 05:41:00.003 SubQueryConversion = true
2025-06-30 05:41:00.010 """
2025-06-30 05:41:00.017
2025-06-30 05:41:00.027 with connect(db_cfg_name, user = act.db.user, password = act.db.password) as con:
2025-06-30 05:41:00.035 cur = con.cursor()
2025-06-30 05:41:00.044 for q_idx, q_tuple in query_map.items():
2025-06-30 05:41:00.053 test_sql, qry_comment = q_tuple[:2]
2025-06-30 05:41:00.061 ps = cur.prepare(test_sql)
2025-06-30 05:41:00.068 print(q_idx)
2025-06-30 05:41:00.075 print(test_sql)
2025-06-30 05:41:00.082 print(qry_comment)
2025-06-30 05:41:00.090 print( '\n'.join([replace_leading(s) for s in ps.detailed_plan.split('\n')]) )
2025-06-30 05:41:00.098 ps.free()
2025-06-30 05:41:00.106
2025-06-30 05:41:00.114 else:
2025-06-30 05:41:00.122 # If retcode !=0 then we can print the whole output of failed gbak:
2025-06-30 05:41:00.128 print('Initial script failed, check output:')
2025-06-30 05:41:00.136 for line in act.clean_stdout.splitlines():
2025-06-30 05:41:00.143 print(line)
2025-06-30 05:41:00.149 act.reset()
2025-06-30 05:41:00.157
2025-06-30 05:41:00.164 act.expected_stdout = f"""
2025-06-30 05:41:00.171 1000
2025-06-30 05:41:00.177 {query_map[1000][0]}
2025-06-30 05:41:00.182 {query_map[1000][1]}
2025-06-30 05:41:00.188 Select Expression
2025-06-30 05:41:00.195 ....-> Filter
2025-06-30 05:41:00.203 ........-> Hash Join (semi) (keys: 1, total key length: 4)
2025-06-30 05:41:00.218 ............-> Table "CUSTOMER" as "C1" Full Scan
2025-06-30 05:41:00.228 ............-> Record Buffer (record length: 33)
2025-06-30 05:41:00.235 ................-> Filter
2025-06-30 05:41:00.242 ....................-> Table "SALES" as "S1" Full Scan
2025-06-30 05:41:00.249
2025-06-30 05:41:00.262 2000
2025-06-30 05:41:00.273 {query_map[2000][0]}
2025-06-30 05:41:00.281 {query_map[2000][1]}
2025-06-30 05:41:00.290 Select Expression
2025-06-30 05:41:00.299 ....-> Filter
2025-06-30 05:41:00.306 ........-> Hash Join (semi) (keys: 1, total key length: 4)
2025-06-30 05:41:00.314 ............-> Table "CUSTOMER" as "C2" Full Scan
2025-06-30 05:41:00.320 ............-> Record Buffer (record length: 33)
2025-06-30 05:41:00.327 ................-> Filter
2025-06-30 05:41:00.335 ....................-> Table "SALES" as "S2" Full Scan
2025-06-30 05:41:00.343
2025-06-30 05:41:00.351 3000
2025-06-30 05:41:00.359 {query_map[3000][0]}
2025-06-30 05:41:00.368 {query_map[3000][1]}
2025-06-30 05:41:00.375 Select Expression
2025-06-30 05:41:00.383 ....-> Filter
2025-06-30 05:41:00.391 ........-> Hash Join (semi) (keys: 1, total key length: 4)
2025-06-30 05:41:00.399 ............-> Table "CUSTOMER" as "C3" Full Scan
2025-06-30 05:41:00.407 ............-> Record Buffer (record length: 58)
2025-06-30 05:41:00.419 ................-> Filter
2025-06-30 05:41:00.428 ....................-> Hash Join (semi) (keys: 1, total key length: 2)
2025-06-30 05:41:00.436 ........................-> Table "SALES" as "S3" Full Scan
2025-06-30 05:41:00.444 ........................-> Record Buffer (record length: 41)
2025-06-30 05:41:00.453 ............................-> Filter
2025-06-30 05:41:00.461 ................................-> Table "EMPLOYEE" as "X" Full Scan
2025-06-30 05:41:00.468
2025-06-30 05:41:00.474 4000
2025-06-30 05:41:00.481 {query_map[4000][0]}
2025-06-30 05:41:00.487 {query_map[4000][1]}
2025-06-30 05:41:00.494 Sub-query
2025-06-30 05:41:00.501 ....-> Filter
2025-06-30 05:41:00.509 ........-> Filter
2025-06-30 05:41:00.515 ............-> Table "EMPLOYEE" as "X" Access By ID
2025-06-30 05:41:00.521 ................-> Bitmap
2025-06-30 05:41:00.527 ....................-> Index "EMPLOYEE_PK" Unique Scan
2025-06-30 05:41:00.534 Select Expression
2025-06-30 05:41:00.547 ....-> Filter
2025-06-30 05:41:00.559 ........-> Hash Join (semi) (keys: 1, total key length: 4)
2025-06-30 05:41:00.571 ............-> Table "CUSTOMER" as "C4" Full Scan
2025-06-30 05:41:00.579 ............-> Record Buffer (record length: 33)
2025-06-30 05:41:00.587 ................-> Filter
2025-06-30 05:41:00.601 ....................-> Table "SALES" as "S4" Full Scan
2025-06-30 05:41:00.614
2025-06-30 05:41:00.624 """
2025-06-30 05:41:00.634 act.stdout = capsys.readouterr().out
2025-06-30 05:41:00.643 > assert act.clean_stdout == act.clean_expected_stdout
2025-06-30 05:41:00.654 E assert
2025-06-30 05:41:00.666 E + Initial script failed, check output:
2025-06-30 05:41:00.675 E + Statement failed, SQLSTATE = 22021
2025-06-30 05:41:00.683 E + unsuccessful metadata update
2025-06-30 05:41:00.691 E + -ALTER CHARACTER SET "SYSTEM"."UTF8" failed
2025-06-30 05:41:00.700 E + -COLLATION "SYSTEM"."CI_COLL" for CHARACTER SET "SYSTEM"."UTF8" is not defined
2025-06-30 05:41:00.711 E + After line 16 in file /var/tmp/qa_2024/test_11675/gh_8061.tmp.sql
2025-06-30 05:41:00.722 E - 1000
2025-06-30 05:41:00.731 E - select c1.cust_no
2025-06-30 05:41:00.739 E - from customer c1
2025-06-30 05:41:00.745 E - where exists (
2025-06-30 05:41:00.752 E - select 1 from sales s1 where s1.cust_no = c1.cust_no and s1.qty_ordered > 10
2025-06-30 05:41:00.758 E - )
2025-06-30 05:41:00.766 E - Check unnesting of single EXISTS
2025-06-30 05:41:00.774 E - Select Expression
2025-06-30 05:41:00.783 E - ....-> Filter
2025-06-30 05:41:00.791 E - ........-> Hash Join (semi)
2025-06-30 05:41:00.803 E - ............-> Table "CUSTOMER" as "C1" Full Scan
2025-06-30 05:41:00.814 E - ............-> Record Buffer (record length: NN)
2025-06-30 05:41:00.822 E - ................-> Filter
2025-06-30 05:41:00.830 E - ....................-> Table "SALES" as "S1" Full Scan
2025-06-30 05:41:00.842 E - 2000
2025-06-30 05:41:00.854 E - select c2.cust_no
2025-06-30 05:41:00.867 E - from customer c2
2025-06-30 05:41:00.877 E - where c2.cust_no = any (
2025-06-30 05:41:00.883 E - select s2.cust_no
2025-06-30 05:41:00.888 E - from sales s2
2025-06-30 05:41:00.894 E - where s2.qty_ordered > 10
2025-06-30 05:41:00.903 E - )
2025-06-30 05:41:00.915 E - Check unnesting of ANY
2025-06-30 05:41:00.922 E - Select Expression
2025-06-30 05:41:00.929 E - ....-> Filter
2025-06-30 05:41:00.936 E - ........-> Hash Join (semi)
2025-06-30 05:41:00.943 E - ............-> Table "CUSTOMER" as "C2" Full Scan
2025-06-30 05:41:00.951 E - ............-> Record Buffer (record length: NN)
2025-06-30 05:41:00.964 E - ................-> Filter
2025-06-30 05:41:00.971 E - ....................-> Table "SALES" as "S2" Full Scan
2025-06-30 05:41:00.978 E - 3000
2025-06-30 05:41:00.984 E - select c3.cust_no
2025-06-30 05:41:00.990 E - from customer c3
2025-06-30 05:41:00.998 E - where exists (
2025-06-30 05:41:01.012 E - select s3.cust_no
2025-06-30 05:41:01.021 E - from sales s3
2025-06-30 05:41:01.028 E - where s3.cust_no = c3.cust_no and
2025-06-30 05:41:01.035 E - exists (
2025-06-30 05:41:01.043 E - select x.emp_no
2025-06-30 05:41:01.051 E - from employee x
2025-06-30 05:41:01.059 E - where
2025-06-30 05:41:01.066 E - x.emp_no = s3.sales_rep
2025-06-30 05:41:01.073 E - and (
2025-06-30 05:41:01.080 E - x.dept_no > 0
2025-06-30 05:41:01.085 E - or
2025-06-30 05:41:01.090 E - x.job_code > ''
2025-06-30 05:41:01.098 E - )
2025-06-30 05:41:01.107 E - )
2025-06-30 05:41:01.114 E - )
2025-06-30 05:41:01.120 E - Check unnesting of two nested EXISTS
2025-06-30 05:41:01.125 E - Select Expression
2025-06-30 05:41:01.131 E - ....-> Filter
2025-06-30 05:41:01.138 E - ........-> Hash Join (semi)
2025-06-30 05:41:01.146 E - ............-> Table "CUSTOMER" as "C3" Full Scan
2025-06-30 05:41:01.155 E - ............-> Record Buffer (record length: NN)
2025-06-30 05:41:01.163 E - ................-> Filter
2025-06-30 05:41:01.171 E - ....................-> Hash Join (semi)
2025-06-30 05:41:01.179 E - ........................-> Table "SALES" as "S3" Full Scan
2025-06-30 05:41:01.188 E - ........................-> Record Buffer (record length: NN)
2025-06-30 05:41:01.201 E - ............................-> Filter
2025-06-30 05:41:01.210 E - ................................-> Table "EMPLOYEE" as "X" Full Scan
2025-06-30 05:41:01.217 E - 4000
2025-06-30 05:41:01.224 E - select c4.cust_no
2025-06-30 05:41:01.231 E - from customer c4
2025-06-30 05:41:01.237 E - where c4.cust_no in
2025-06-30 05:41:01.244 E - (
2025-06-30 05:41:01.252 E - select s4.cust_no
2025-06-30 05:41:01.260 E - from sales s4
2025-06-30 05:41:01.268 E - where
2025-06-30 05:41:01.278 E - s4.paid > ''
2025-06-30 05:41:01.289 E - or
2025-06-30 05:41:01.297 E - s4.sales_rep in (
2025-06-30 05:41:01.307 E - select x.emp_no
2025-06-30 05:41:01.315 E - from employee x
2025-06-30 05:41:01.322 E - where
2025-06-30 05:41:01.329 E - x.dept_no > 0
2025-06-30 05:41:01.336 E - or
2025-06-30 05:41:01.343 E - x.job_code > ''
2025-06-30 05:41:01.349 E - )
2025-06-30 05:41:01.356 E - )
2025-06-30 05:41:01.362 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-30 05:41:01.368 E - Sub-query
2025-06-30 05:41:01.374 E - ....-> Filter
2025-06-30 05:41:01.381 E - ........-> Filter
2025-06-30 05:41:01.388 E - ............-> Table "EMPLOYEE" as "X" Access By ID
2025-06-30 05:41:01.394 E - ................-> Bitmap
2025-06-30 05:41:01.400 E - ....................-> Index "EMPLOYEE_PK" Unique Scan
2025-06-30 05:41:01.413 E - Select Expression
2025-06-30 05:41:01.421 E - ....-> Filter
2025-06-30 05:41:01.428 E - ........-> Hash Join (semi)
2025-06-30 05:41:01.437 E - ............-> Table "CUSTOMER" as "C4" Full Scan
2025-06-30 05:41:01.445 E - ............-> Record Buffer (record length: NN)
2025-06-30 05:41:01.453 E - ................-> Filter
2025-06-30 05:41:01.464 E - ....................-> Table "SALES" as "S4" Full Scan
2025-06-30 05:41:01.475
2025-06-30 05:41:01.482 tests/bugs/gh_8061_test.py:232: AssertionError
2025-06-30 05:41:01.489 ---------------------------- Captured stdout setup -----------------------------
2025-06-30 05:41:01.496 Creating db: localhost:/var/tmp/qa_2024/test_11675/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_11675/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_11675/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
|