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

Error when querying tableOfTypes #1982

Closed
rfdavid opened this issue Aug 31, 2023 · 1 comment · Fixed by #2090
Closed

Error when querying tableOfTypes #1982

rfdavid opened this issue Aug 31, 2023 · 1 comment · Fixed by #2090

Comments

@rfdavid
Copy link
Collaborator

rfdavid commented Aug 31, 2023

Context

  • New database created
  • Compiled from the master branch.
➜  shell git:(master) ✗ ./kuzu_shell /tmp/test
Opened the database at path: /tmp/test
Enter ":help" for usage hints.
kuzu> create node table tableOfTypes (id INT64, int64Column INT64, doubleColumn DOUBLE, booleanColumn BOOLEAN, dateColumn DATE, timestampColumn TIMESTAMP, stringColumn STRING, listOfInt64 INT64[], listOfString STRING[], listOfListOfInt64 INT64[][], fixedSizeList INT64[3], listOfFixedSizeList INT64[3][], structColumn STRUCT(ID int64, name STRING), PRIMARY KEY (id));
---------------------------------------------
| result                                    |
---------------------------------------------
| NodeTable: tableOfTypes has been created. |
---------------------------------------------
kuzu> COPY tableOfTypes FROM "dataset/copy-test/node/parquet/types_50k*.parquet" (HEADER=true);
------------------------------------------------------------------
| result                                                         |
------------------------------------------------------------------
| 49999 number of tuples has been copied to table: tableOfTypes. |
------------------------------------------------------------------
(1 tuple)
Time: 108.74ms (compiling), 76.50ms (executing)
kuzu> match (t:tableOfTypes) return t.id, t.int64Column, t.doubleColumn, t.booleanColumn, t.dateColumn, t.timestampColumn, t.stringColumn, t.listOfInt64, t.listOfString, t.listOfListOfInt64, t.structColumn;
Assertion failed: (pageIdx < numPages && pageStates[pageIdx]), function getPageState, file bm_fikuzu_shell(2684,0x16d37b000) malloc: Incorrect checksum for freed object 0x12201d200: probably modified after being freed.
Corrupt value: 0x17e98
le_handle.h, line 173.
kuzu_shell(2684,0x16d37b000) malloc: *** set a breakpoint in malloc_error_break to debug
[1]    2684 abort      ./kuzu_shell /tmp/test
@acquamarin
Copy link
Collaborator

fixed in: #2090

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants