here is the code
from gresearch.spark.diff import *
left = spark.createDataFrame([(1, "one"), (2, "two"), (3, "three")], ["id", "value"])
right = spark.createDataFrame([(1, "one"), (2, "Two"), (4, "four")], ["id", "value"])
print(spark.version)
left.diff(right).show()
Spark version-3.5.0
Error: [[ATTRIBUTE_NOT_SUPPORTED](https://docs.microsoft.com/azure/databricks/error-messages/error-classes#attribute_not_supported)] Attribute `diff` is not supported.
have added maven library: uk.co.gresearch.spark:spark-extension_2.12:2.12.0-3.5