Chungmin Lee

Results 46 comments of Chungmin Lee

Confirmed it's fixed in the latest commit. Thanks!

Here's pyspark repro: ```python # repro.py import tempfile from multiprocessing.pool import ThreadPool from pyspark.sql import SparkSession from pyspark.sql.functions import col from delta.tables import DeltaTable spark = SparkSession.builder.appName("Test").getOrCreate() spark.sparkContext.setLogLevel("ERROR") with tempfile.TemporaryDirectory()...

@johanl-db Yes, that's a good summary. For other potential issues, we can make a follow up.

I have the same issue. It happens after upgrading SBT to 1.9.0 from a lower version.

I also had this issue, __llvm_write_binary_ids getting SEGV after using patchelf to replace SONAME/NEEDED. I ended up manually replacing the strings (ensuring that they have the same length).

Here's a smaller repro: ```scala spark.sql("create table mytab (id int) using delta") spark.sql(""" merge into mytab as target using ( select (select max(id) from mytab) as id from ( select...