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_11672/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-29 05:35:02.883
2025-06-29 05:35:02.890 act = <firebird.qa.plugin.Action object at [hex]>
2025-06-29 05:35:02.899 tmp_sql = PosixPath('/var/tmp/qa_2024/test_11672/gh_8061.tmp.sql')
2025-06-29 05:35:02.906 capsys = <_pytest.capture.CaptureFixture object at [hex]>
2025-06-29 05:35:02.913
2025-06-29 05:35:02.923 @pytest.mark.version('>=5.0.1')
2025-06-29 05:35:02.939 def test_1(act: Action, tmp_sql: Path, capsys):
2025-06-29 05:35:02.951 employee_data_sql = zipfile.Path(act.files_dir / 'standard_sample_databases.zip', at='sample-DB_-_firebird.sql')
2025-06-29 05:35:02.962 tmp_sql.write_bytes(employee_data_sql.read_bytes())
2025-06-29 05:35:02.971
2025-06-29 05:35:02.978 act.isql(switches = ['-q'], charset='utf8', input_file = tmp_sql, combine_output = True)
2025-06-29 05:35:02.985
2025-06-29 05:35:02.992 if act.return_code == 0:
2025-06-29 05:35:02.998
2025-06-29 05:35:03.008 srv_cfg = driver_config.register_server(name = f'srv_cfg_8061', config = '')
2025-06-29 05:35:03.020 db_cfg_name = f'db_cfg_8061'
2025-06-29 05:35:03.031 db_cfg_object = driver_config.register_database(name = db_cfg_name)
2025-06-29 05:35:03.039 db_cfg_object.server.value = srv_cfg.name
2025-06-29 05:35:03.046 db_cfg_object.database.value = str(act.db.db_path)
2025-06-29 05:35:03.054 if act.is_version('<6'):
2025-06-29 05:35:03.063 db_cfg_object.config.value = f"""
2025-06-29 05:35:03.074 SubQueryConversion = true
2025-06-29 05:35:03.086 """
2025-06-29 05:35:03.098
2025-06-29 05:35:03.107 with connect(db_cfg_name, user = act.db.user, password = act.db.password) as con:
2025-06-29 05:35:03.114 cur = con.cursor()
2025-06-29 05:35:03.122 for q_idx, q_tuple in query_map.items():
2025-06-29 05:35:03.131 test_sql, qry_comment = q_tuple[:2]
2025-06-29 05:35:03.143 ps = cur.prepare(test_sql)
2025-06-29 05:35:03.154 print(q_idx)
2025-06-29 05:35:03.164 print(test_sql)
2025-06-29 05:35:03.177 print(qry_comment)
2025-06-29 05:35:03.186 print( '\n'.join([replace_leading(s) for s in ps.detailed_plan.split('\n')]) )
2025-06-29 05:35:03.195 ps.free()
2025-06-29 05:35:03.206
2025-06-29 05:35:03.215 else:
2025-06-29 05:35:03.223 # If retcode !=0 then we can print the whole output of failed gbak:
2025-06-29 05:35:03.230 print('Initial script failed, check output:')
2025-06-29 05:35:03.237 for line in act.clean_stdout.splitlines():
2025-06-29 05:35:03.243 print(line)
2025-06-29 05:35:03.250 act.reset()
2025-06-29 05:35:03.259
2025-06-29 05:35:03.268 act.expected_stdout = f"""
2025-06-29 05:35:03.275 1000
2025-06-29 05:35:03.289 {query_map[1000][0]}
2025-06-29 05:35:03.300 {query_map[1000][1]}
2025-06-29 05:35:03.309 Select Expression
2025-06-29 05:35:03.315 ....-> Filter
2025-06-29 05:35:03.321 ........-> Hash Join (semi) (keys: 1, total key length: 4)
2025-06-29 05:35:03.327 ............-> Table "CUSTOMER" as "C1" Full Scan
2025-06-29 05:35:03.333 ............-> Record Buffer (record length: 33)
2025-06-29 05:35:03.339 ................-> Filter
2025-06-29 05:35:03.347 ....................-> Table "SALES" as "S1" Full Scan
2025-06-29 05:35:03.355
2025-06-29 05:35:03.363 2000
2025-06-29 05:35:03.371 {query_map[2000][0]}
2025-06-29 05:35:03.383 {query_map[2000][1]}
2025-06-29 05:35:03.391 Select Expression
2025-06-29 05:35:03.398 ....-> Filter
2025-06-29 05:35:03.409 ........-> Hash Join (semi) (keys: 1, total key length: 4)
2025-06-29 05:35:03.419 ............-> Table "CUSTOMER" as "C2" Full Scan
2025-06-29 05:35:03.426 ............-> Record Buffer (record length: 33)
2025-06-29 05:35:03.433 ................-> Filter
2025-06-29 05:35:03.445 ....................-> Table "SALES" as "S2" Full Scan
2025-06-29 05:35:03.454
2025-06-29 05:35:03.463 3000
2025-06-29 05:35:03.472 {query_map[3000][0]}
2025-06-29 05:35:03.480 {query_map[3000][1]}
2025-06-29 05:35:03.487 Select Expression
2025-06-29 05:35:03.495 ....-> Filter
2025-06-29 05:35:03.506 ........-> Hash Join (semi) (keys: 1, total key length: 4)
2025-06-29 05:35:03.515 ............-> Table "CUSTOMER" as "C3" Full Scan
2025-06-29 05:35:03.524 ............-> Record Buffer (record length: 58)
2025-06-29 05:35:03.536 ................-> Filter
2025-06-29 05:35:03.547 ....................-> Hash Join (semi) (keys: 1, total key length: 2)
2025-06-29 05:35:03.558 ........................-> Table "SALES" as "S3" Full Scan
2025-06-29 05:35:03.566 ........................-> Record Buffer (record length: 41)
2025-06-29 05:35:03.573 ............................-> Filter
2025-06-29 05:35:03.580 ................................-> Table "EMPLOYEE" as "X" Full Scan
2025-06-29 05:35:03.587
2025-06-29 05:35:03.594 4000
2025-06-29 05:35:03.602 {query_map[4000][0]}
2025-06-29 05:35:03.610 {query_map[4000][1]}
2025-06-29 05:35:03.617 Sub-query
2025-06-29 05:35:03.630 ....-> Filter
2025-06-29 05:35:03.644 ........-> Filter
2025-06-29 05:35:03.655 ............-> Table "EMPLOYEE" as "X" Access By ID
2025-06-29 05:35:03.663 ................-> Bitmap
2025-06-29 05:35:03.670 ....................-> Index "EMPLOYEE_PK" Unique Scan
2025-06-29 05:35:03.679 Select Expression
2025-06-29 05:35:03.691 ....-> Filter
2025-06-29 05:35:03.701 ........-> Hash Join (semi) (keys: 1, total key length: 4)
2025-06-29 05:35:03.714 ............-> Table "CUSTOMER" as "C4" Full Scan
2025-06-29 05:35:03.723 ............-> Record Buffer (record length: 33)
2025-06-29 05:35:03.730 ................-> Filter
2025-06-29 05:35:03.737 ....................-> Table "SALES" as "S4" Full Scan
2025-06-29 05:35:03.744
2025-06-29 05:35:03.751 """
2025-06-29 05:35:03.759 act.stdout = capsys.readouterr().out
2025-06-29 05:35:03.770 > assert act.clean_stdout == act.clean_expected_stdout
2025-06-29 05:35:03.781 E assert
2025-06-29 05:35:03.789 E + Initial script failed, check output:
2025-06-29 05:35:03.796 E + Statement failed, SQLSTATE = 22021
2025-06-29 05:35:03.802 E + unsuccessful metadata update
2025-06-29 05:35:03.807 E + -ALTER CHARACTER SET "SYSTEM"."UTF8" failed
2025-06-29 05:35:03.813 E + -COLLATION "SYSTEM"."CI_COLL" for CHARACTER SET "SYSTEM"."UTF8" is not defined
2025-06-29 05:35:03.820 E + After line 16 in file /var/tmp/qa_2024/test_11672/gh_8061.tmp.sql
2025-06-29 05:35:03.826 E - 1000
2025-06-29 05:35:03.833 E - select c1.cust_no
2025-06-29 05:35:03.840 E - from customer c1
2025-06-29 05:35:03.852 E - where exists (
2025-06-29 05:35:03.861 E - select 1 from sales s1 where s1.cust_no = c1.cust_no and s1.qty_ordered > 10
2025-06-29 05:35:03.873 E - )
2025-06-29 05:35:03.881 E - Check unnesting of single EXISTS
2025-06-29 05:35:03.891 E - Select Expression
2025-06-29 05:35:03.898 E - ....-> Filter
2025-06-29 05:35:03.906 E - ........-> Hash Join (semi)
2025-06-29 05:35:03.913 E - ............-> Table "CUSTOMER" as "C1" Full Scan
2025-06-29 05:35:03.918 E - ............-> Record Buffer (record length: NN)
2025-06-29 05:35:03.923 E - ................-> Filter
2025-06-29 05:35:03.928 E - ....................-> Table "SALES" as "S1" Full Scan
2025-06-29 05:35:03.933 E - 2000
2025-06-29 05:35:03.939 E - select c2.cust_no
2025-06-29 05:35:03.944 E - from customer c2
2025-06-29 05:35:03.950 E - where c2.cust_no = any (
2025-06-29 05:35:03.957 E - select s2.cust_no
2025-06-29 05:35:03.963 E - from sales s2
2025-06-29 05:35:03.976 E - where s2.qty_ordered > 10
2025-06-29 05:35:03.987 E - )
2025-06-29 05:35:03.995 E - Check unnesting of ANY
2025-06-29 05:35:04.004 E - Select Expression
2025-06-29 05:35:04.010 E - ....-> Filter
2025-06-29 05:35:04.019 E - ........-> Hash Join (semi)
2025-06-29 05:35:04.031 E - ............-> Table "CUSTOMER" as "C2" Full Scan
2025-06-29 05:35:04.039 E - ............-> Record Buffer (record length: NN)
2025-06-29 05:35:04.052 E - ................-> Filter
2025-06-29 05:35:04.060 E - ....................-> Table "SALES" as "S2" Full Scan
2025-06-29 05:35:04.068 E - 3000
2025-06-29 05:35:04.075 E - select c3.cust_no
2025-06-29 05:35:04.081 E - from customer c3
2025-06-29 05:35:04.088 E - where exists (
2025-06-29 05:35:04.094 E - select s3.cust_no
2025-06-29 05:35:04.100 E - from sales s3
2025-06-29 05:35:04.110 E - where s3.cust_no = c3.cust_no and
2025-06-29 05:35:04.119 E - exists (
2025-06-29 05:35:04.127 E - select x.emp_no
2025-06-29 05:35:04.134 E - from employee x
2025-06-29 05:35:04.141 E - where
2025-06-29 05:35:04.147 E - x.emp_no = s3.sales_rep
2025-06-29 05:35:04.153 E - and (
2025-06-29 05:35:04.160 E - x.dept_no > 0
2025-06-29 05:35:04.166 E - or
2025-06-29 05:35:04.174 E - x.job_code > ''
2025-06-29 05:35:04.181 E - )
2025-06-29 05:35:04.188 E - )
2025-06-29 05:35:04.195 E - )
2025-06-29 05:35:04.202 E - Check unnesting of two nested EXISTS
2025-06-29 05:35:04.208 E - Select Expression
2025-06-29 05:35:04.215 E - ....-> Filter
2025-06-29 05:35:04.222 E - ........-> Hash Join (semi)
2025-06-29 05:35:04.230 E - ............-> Table "CUSTOMER" as "C3" Full Scan
2025-06-29 05:35:04.237 E - ............-> Record Buffer (record length: NN)
2025-06-29 05:35:04.250 E - ................-> Filter
2025-06-29 05:35:04.261 E - ....................-> Hash Join (semi)
2025-06-29 05:35:04.271 E - ........................-> Table "SALES" as "S3" Full Scan
2025-06-29 05:35:04.284 E - ........................-> Record Buffer (record length: NN)
2025-06-29 05:35:04.296 E - ............................-> Filter
2025-06-29 05:35:04.307 E - ................................-> Table "EMPLOYEE" as "X" Full Scan
2025-06-29 05:35:04.315 E - 4000
2025-06-29 05:35:04.322 E - select c4.cust_no
2025-06-29 05:35:04.331 E - from customer c4
2025-06-29 05:35:04.339 E - where c4.cust_no in
2025-06-29 05:35:04.347 E - (
2025-06-29 05:35:04.356 E - select s4.cust_no
2025-06-29 05:35:04.364 E - from sales s4
2025-06-29 05:35:04.371 E - where
2025-06-29 05:35:04.378 E - s4.paid > ''
2025-06-29 05:35:04.385 E - or
2025-06-29 05:35:04.391 E - s4.sales_rep in (
2025-06-29 05:35:04.398 E - select x.emp_no
2025-06-29 05:35:04.404 E - from employee x
2025-06-29 05:35:04.410 E - where
2025-06-29 05:35:04.418 E - x.dept_no > 0
2025-06-29 05:35:04.428 E - or
2025-06-29 05:35:04.440 E - x.job_code > ''
2025-06-29 05:35:04.451 E - )
2025-06-29 05:35:04.465 E - )
2025-06-29 05:35:04.476 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-29 05:35:04.484 E - Sub-query
2025-06-29 05:35:04.491 E - ....-> Filter
2025-06-29 05:35:04.502 E - ........-> Filter
2025-06-29 05:35:04.513 E - ............-> Table "EMPLOYEE" as "X" Access By ID
2025-06-29 05:35:04.524 E - ................-> Bitmap
2025-06-29 05:35:04.532 E - ....................-> Index "EMPLOYEE_PK" Unique Scan
2025-06-29 05:35:04.538 E - Select Expression
2025-06-29 05:35:04.543 E - ....-> Filter
2025-06-29 05:35:04.549 E - ........-> Hash Join (semi)
2025-06-29 05:35:04.555 E - ............-> Table "CUSTOMER" as "C4" Full Scan
2025-06-29 05:35:04.560 E - ............-> Record Buffer (record length: NN)
2025-06-29 05:35:04.567 E - ................-> Filter
2025-06-29 05:35:04.575 E - ....................-> Table "SALES" as "S4" Full Scan
2025-06-29 05:35:04.581
2025-06-29 05:35:04.587 tests/bugs/gh_8061_test.py:232: AssertionError
2025-06-29 05:35:04.593 ---------------------------- Captured stdout setup -----------------------------
2025-06-29 05:35:04.598 Creating db: localhost:/var/tmp/qa_2024/test_11672/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_11672/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_11672/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
|