Hacktoberfest 2026: the issues maintainers tagged for October, open and beginner-friendly. Browse Hacktoberfest issues

Error when trying to parse multiple rows via Relational API `values`

Open
#79 3 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Assessment

Difficulty
3/5
Estimated time
1-2 days
Newbie friendliness
45/100
Issue type
Bug
Clarity
Mostly clear
Activity status
Stale
Tech stack
python, sql
Domain
api, databases

Research direction

Start by running the provided Python reproduction against conn.values() and compare its multi-row behavior with the SQL VALUES query. Trace the Relational API values entry point and identify how nested native objects are interpreted. Done means multiple rows and columns produce scalar columns with the same result shape as SQL VALUES, with coverage for the reported cases.

Written by the indexing model from the issue text.

Description

reproduced
What happens?

When trying to utilize the values() function for converting a native Python object into a relation, I am unable to create a relation with multiple rows and columns.

To Reproduce
import duckdb

conn = duckdb.connect()

# 1) Base `VALUES` query using straight SQL (correct/expected)
conn.execute("FROM (VALUES (1, 'a'), (2, 'b'))").df()

# 2) 1 row, multiple columns relation (correct/expected)
conn.values([1, 'a']).df()

# 3) 2 rows, multiple columns relation (multiple different attempts - same output below)
conn.values([1, 'a'], [2, 'b']).df()
conn.values([((1), ('a')), ((2), ('b'))]).df()
conn.values(([1, 'a']), ([2, 'b'])).df()
conn.values([[1, 'a'], [2, 'b']]).df()

# 4) 2 rows, multiple columns relation (works, but typed as lists)
conn.values(([1], ['a']), ([2], ['b'])).df()

# 5) Attempted to remove the lists 🤷🏼
conn.values((1, 'a'), (2, 'b'))

Outputs:

# 1)
   col0 col1
0      1      a
1      2      b

# 2)
   col0 col1
0      1      a

# 3)
     col0    col1
0  [1, a]  [2, b]

# 4)
    [1]  ['a']
0  [1]    [a]
1   [2]   [b]

# 5)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
duckdb.duckdb.BinderException: Binder Error: Referenced column "a" not found in FROM clause!
OS:

OSX 15.6

DuckDB Package Version:

1.4.0

Python Version:

3.11

Full Name:

Joe Rimsky

Affiliation:

Gecko Robotics

What is the latest build you tested with? If possible, we recommend testing with the latest nightly build.

I have tested with a stable release

Did you include all relevant data sets for reproducing the issue?

Not applicable - the reproduction does not require a data set

Did you include all code required to reproduce the issue?
  • Yes, I have
Did you include all relevant configuration to reproduce the issue?
  • Yes, I have
Dominant language
Python
Stars
186
Forks
113
Avg merge
22h 45m
Merged PRs (30d)
14

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from duckdb/duckdb-python

All issues in duckdb/duckdb-python

Similar issues

More Python issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.