Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FEAT-#7308: Interoperability between query compilers #7376

Merged
merged 34 commits into from
Sep 2, 2024

creating function for create_test_df_in_defined_mode

f488872
Select commit
Loading
Failed to load commit list.
Merged

FEAT-#7308: Interoperability between query compilers #7376

creating function for create_test_df_in_defined_mode
f488872
Select commit
Loading
Failed to load commit list.
GitHub Advanced Security / CodeQL succeeded Sep 2, 2024 in 4s

6 new alerts

New alerts in code changed by this pull request

  • 6 notes

See annotations below for details.

View all branch alerts.

Annotations

Check notice on line 28 in modin/core/storage_formats/pandas/native_query_compiler.py

See this annotation in the file changed.

Code scanning / CodeQL

Cyclic import Note

Import of module
modin.core.storage_formats.pandas.query_compiler_caster
begins an import cycle.

Check notice on line 29 in modin/core/storage_formats/pandas/query_compiler_caster.py

See this annotation in the file changed.

Code scanning / CodeQL

Cyclic import Note

Import of module
modin.core.storage_formats.base.query_compiler
begins an import cycle.

Check notice on line 1742 in modin/pandas/base.py

See this annotation in the file changed.

Code scanning / CodeQL

Mismatch between signature and use of an overridden method Note

Overridden method signature does not match
call
, where it is passed too few arguments. Overriding method
method DataFrame.fillna
matches the call.
Overridden method signature does not match
call
, where it is passed too few arguments. Overriding method
method DataFrame.fillna
matches the call.
Overridden method signature does not match
call
, where it is passed too few arguments. Overriding method
method DataFrame.fillna
matches the call.
Overridden method signature does not match
call
, where it is passed too few arguments. Overriding method
method DataFrame.fillna
matches the call.
Overridden method signature does not match
call
, where it is passed too few arguments. Overriding method
method DataFrame.fillna
matches the call.
Overridden method signature does not match
call
, where it is passed too few arguments. Overriding method
method DataFrame.fillna
matches the call.
Overridden method signature does not match
call
, where it is passed too few arguments. Overriding method
method DataFrame.fillna
matches the call.
Overridden method signature does not match
call
, where it is passed too few arguments. Overriding method
method DataFrame.fillna
matches the call.
Overridden method signature does not match
call
, where it is passed too few arguments. Overriding method
method DataFrame.fillna
matches the call.
Overridden method signature does not match
call
, where it is passed too few arguments. Overriding method
method DataFrame.fillna
matches the call.
Overridden method signature does not match
call
, where it is passed too few arguments. Overriding method
method DataFrame.fillna
matches the call.
Overridden method signature does not match
call
, where it is passed too few arguments. Overriding method
method DataFrame.fillna
matches the call.
Overridden method signature does not match
call
, where it is passed too few arguments. Overriding method
method DataFrame.fillna
matches the call.
Overridden method signature does not match
call
, where it is passed too few arguments. Overriding method
method DataFrame.fillna
matches the call.
Overridden method signature does not match
call
, where it is passed too few arguments. Overriding method
method DataFrame.fillna
matches the call.
Overridden method signature does not match
call
, where it is passed too few arguments. Overriding method
method DataFrame.fillna
matches the call.
Overridden method signature does not match
call
, where it is passed too few arguments. Overriding method
method DataFrame.fillna
matches the call.

Check notice on line 104 in modin/tests/pandas/native_df_mode/test_default.py

See this annotation in the file changed.

Code scanning / CodeQL

Empty except Note test

'except' clause does nothing but pass and there is no explanatory comment.

Check notice on line 253 in modin/tests/pandas/native_df_mode/test_default.py

See this annotation in the file changed.

Code scanning / CodeQL

Statement has no effect Note test

This statement has no effect.

Check notice on line 61 in modin/tests/pandas/native_df_mode/utils.py

See this annotation in the file changed.

Code scanning / CodeQL

Explicit returns mixed with implicit (fall through) returns Note test

Mixing implicit and explicit returns may indicate an error as implicit returns always return None.