Lukas Welsch

Results 6 comments of Lukas Welsch

Thank you for looking into this issue! I am able to query source data with the character 'ß'. It seems to only create an error, when the character 'ß' is...

We are also using Metabase Version v0.43.1. I added the complete stack trace I am seeing in the Admin-console. From what I can observe, we don't get a NullPointerExcpetion, instead...

Yes, we have stored queries in our system, like the ones I have provided. That is also how we found the issue. I think that you have not yet seen...

Hello @dacort , we got an answer from the AWS support. They found the bug and told us, that the error with the German symbols is expected to be resolved...

As a workaround you can create temp tables, then there is no Segmentation fault ```sql CREATE OR REPLACE TABLE most_followed_person AS FROM GRAPH_TABLE (snb MATCH (follower:Person)-[follows:knows]->(person:Person) COLUMNS (person.id AS personID,...

The segmenation fault also happens if you do a UNION or UNION ALL: ```sql SELECT count(mem.forumId) forumCount FROM GRAPH_TABLE (snb MATCH (person:Person)