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

Table_scan column projection #578

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Rename single column slection test name
  • Loading branch information
ayushdg committed Jun 22, 2022
commit 07473c37fd77e091ea16c5407c380d69ea40eacc
2 changes: 1 addition & 1 deletion tests/integration/test_select.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def test_case_when_no_else(c):
assert_eq(actual_df, expected_df, check_dtype=False)


def test_singular_column_projection_simple(c):
ayushdg marked this conversation as resolved.
Show resolved Hide resolved
def test_singular_column_selection(c):
df = pd.DataFrame({"a": [1, 2, 3], "b": [4, 5, 6]})
c.create_table("df", df)

Expand Down