This repository has been archived by the owner on Jul 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use __getitem__ for df column selection (#41)
* use __getitem__ for df column selection * add python test
- Loading branch information
Showing
3 changed files
with
85 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
|
||
import pyarrow as pa | ||
import pytest | ||
|
||
from datafusion import ExecutionContext | ||
|
||
|
||
@pytest.fixture | ||
def df(): | ||
ctx = ExecutionContext() | ||
|
||
# create a RecordBatch and a new DataFrame from it | ||
batch = pa.RecordBatch.from_arrays( | ||
[pa.array([1, 2, 3]), pa.array([4, 4, 6])], | ||
names=["a", "b"], | ||
) | ||
return ctx.create_dataframe([[batch]]) | ||
|
||
|
||
def test_indexing(df): | ||
assert df["a"] is not None | ||
assert df["a", "b"] is not None | ||
assert df[("a", "b")] is not None | ||
assert df[["a"]] is not None | ||
|
||
|
||
def test_err(df): | ||
with pytest.raises(Exception) as e_info: | ||
df["c"] | ||
|
||
assert "No field with unqualified name" in e_info.value.args[0] | ||
|
||
with pytest.raises(Exception) as e_info: | ||
df[1] | ||
|
||
assert ( | ||
"DataFrame can only be indexed by string index or indices" | ||
in e_info.value.args[0] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters