MithunR
MithunR
Hmm. Looks like this has to do with the implied cast in the `WHERE` clause: ```sql UPDATE mycorpus SET year=2022 WHERE year=2023 ---> Should've been a STRING. ``` A JVM...
Relevant stack frames for future investigation: ``` Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j ai.rapids.cudf.Table.partition(JJI[I)[J+0 j ai.rapids.cudf.Table.partition(Lai/rapids/cudf/ColumnView;I)Lai/rapids/cudf/PartitionedTable;+23 j com.nvidia.spark.rapids.GpuHashPartitioningBase.$anonfun$partitionInternalAndClose$6(Lcom/nvidia/spark/rapids/GpuHashPartitioningBase;Lai/rapids/cudf/ColumnVector;Lai/rapids/cudf/Table;)Lai/rapids/cudf/PartitionedTable;+6 j com.nvidia.spark.rapids.GpuHashPartitioningBase$$Lambda$7341.apply(Ljava/lang/Object;)Ljava/lang/Object;+12 j com.nvidia.spark.rapids.Arm.withResource(Ljava/lang/AutoCloseable;Lscala/Function1;)Ljava/lang/Object;+2 j com.nvidia.spark.rapids.Arm.withResource$(Lcom/nvidia/spark/rapids/Arm;Ljava/lang/AutoCloseable;Lscala/Function1;)Ljava/lang/Object;+3 j com.nvidia.spark.rapids.GpuHashPartitioningBase.withResource(Ljava/lang/AutoCloseable;Lscala/Function1;)Ljava/lang/Object;+3 j...
~Ah, right. I should have enabled the plugin. Thanks for catching it. I'll correct the description.~ Edit: Nope, the script is correct, as it is. I'm trying to repro it...
Here's what I'm getting from `compute-sanitizer`: ``` ========= Program hit named symbol not found (error 500) on CUDA API call to cuGetProcAddress. ========= Saved host backtrace up to driver entry...
> I tried locally (non-db env) and it passed with Spark3.3.0 + delta-2.1.0 + plugin-22.10. Sorry I'm late to this party, but I can confirm that this bug is specific...
> Why it ends up selecting nothing is unclear though... ends up selecting nothing without it being a string to search for... I'll have to work out the vagaries of...
Closing this as invalid; both `hashCode()` and `equals()` are correct. 1. `Scalar.hashCode()` returns `Objects.hashCode(type, valueHash)`. `type` includes the scale. 2. `Scalar.equals()` compares `type` first, before proceeding to compare values. `type`,...
A couple of questions for clarification: 1. What is the priority of data types to be supported for Hive's text file-format? Specifically, are non-primitive types (e.g. `ARRAY`, `STRUCT`, `MAP`) an...
(I'm having a little trouble locating the official documentation for the following.) The default Hive text serialization format uses `LazySimpleSerde`, with `\n` as the record delimiter, and a series of...
This is definitely more in @davidwendt's wheelhouse than in mine. I'm trying to familiarize myself with `finder_warp_parallell_fn`.