You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of now, querying star expression (namely, *) from graph returns not only columns contained in the graph, but also the ones from vertex / edge tables.
For more details, see reproduction code below and comments in thread #26 (comment)
To Reproduce
D CREATE TABLE Person(
id BIGINT PRIMARY KEY,
name VARCHAR
);
D INSERT INTO Person VALUES (0, 'Foo'), (1, 'Bar');
D -CREATE PROPERTY GRAPH g VERTEX TABLES (Person PROPERTIES (id));
D -SELECT * FROM GRAPH_TABLE (g MATCH (p:Person));
┌───────┬─────────┐
│ id │ name │
│ int64 │ varchar │
├───────┼─────────┤
│ 0 │ Foo │
│ 1 │ Bar │
└───────┴─────────┘
The expected result should only contain id column, but not name column.
OS:
ubuntu 22.04, x86_64
DuckDB Version:
c380346433
DuckDB Client:
C++
Full Name:
Hao
Affiliation:
N/A
How did you load the extension?
Built from source
Did you include all relevant data sets for reproducing the issue?
Yes
Did you include all code required to reproduce the issue?
Yes, I have
Did you include all relevant configuration (e.g., CPU architecture, Python version, Linux distribution) to reproduce the issue?
Yes, I have
The text was updated successfully, but these errors were encountered:
What happens?
As of now, querying star expression (namely,
*
) from graph returns not only columns contained in the graph, but also the ones from vertex / edge tables.For more details, see reproduction code below and comments in thread #26 (comment)
To Reproduce
The expected result should only contain
id
column, but notname
column.OS:
ubuntu 22.04, x86_64
DuckDB Version:
c380346433
DuckDB Client:
C++
Full Name:
Hao
Affiliation:
N/A
How did you load the extension?
Built from source
Did you include all relevant data sets for reproducing the issue?
Yes
Did you include all code required to reproduce the issue?
Did you include all relevant configuration (e.g., CPU architecture, Python version, Linux distribution) to reproduce the issue?
The text was updated successfully, but these errors were encountered: