• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

georgia-tech-db / eva / #913
0%
master: 0%

Build:
Build:
LAST BUILD BRANCH: HEAD
DEFAULT BRANCH: master
Ran 11 Apr 2026 07:06PM UTC
Jobs 1
Files 299
Run time 1min
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

07 Oct 2023 06:14AM UTC coverage: 73.012% (+73.0%) from 0.0%
#913

push

circleci

web-flow
Remove table names from column names for `df()` call (#1256)

Removing table names from the `dataframe` during `df()` call. The users
can then easily load CSV files generated using `EvaDB` with the
`to_csv()` call at a later time (for long-running or expensive queries).

Example:

```
select_query = cursor.query(
    f"SELECT * FROM {repo_name}_StargazerList;"
).df()

select_query.to_csv("stargazers_list.csv", index=False)

# Later
cursor.query(
        f"""
   CREATE TABLE IF NOT EXISTS {repo_name}_StargazerList(
   github_username TEXT(1000));
"""
    ).df()

cursor.query("LOAD CSV 'stargazers_list.csv' INTO {repo_name}_StargazerList;""").df()

```

Do we need the table names for any use cases? For example, for duplicate
column names from two different functions - `object_detector_1.labels`
and `object_detector_2.labels`?

---------

Co-authored-by: Andy Xu <xzdandy@example.com>
Co-authored-by: Andy Xu <xzdandy@gmail.com>

2 of 7 new or added lines in 1 file covered. (28.57%)

9125 of 12498 relevant lines covered (73.01%)

0.73 hits per line

Jobs
ID Job ID Ran Files Coverage
1 #913.1 11 Apr 2026 07:06PM UTC 299
73.01
Source Files on build #913
  • Tree
  • List 299
  • Changed 0
  • Source Changed 0
  • Coverage Changed 0
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Repo
  • CircleCI Build #913
  • d6cb3a5c on github
  • Prev Build on staging (#0E3FF64C...)
  • Next Build on HEAD
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc