03-03-2024 09:28 AM
I am struggling to report what is a fairly fundamental bug. Can anyone help? Ideally someone from Databricks themselves. Or others who can confirm they can replicate it.
There is a bug where databricks seems to be hiding “any” properties which have the characters “user” in them.
This is not just in the display, but in the actual underlying result set.
To reproduce the bug.
create or replace view tmp_view
tblproperties ( notes='userid', notes2='myuserid', something='this will be fine')
as
select 1 as a;
Now in the next cell just run
show tblproperties tmp_view
and it doesn’t just hide the data from the diusplay, but it changes the data inside the resultset. My application which connects to databricks and runs this command is actually getting the string *****(redacted)
03-07-2024 11:55 PM
I managed to get a response back from support at databricks.
Admittedly it is a bit nuclear, but there is a way of switching it off.
03-07-2024 08:53 AM
I understand that yours is a View. For my case, it's a Table so I could use `desc detail <schema_name>.<table_name>` to get the table properties info that are not redacted in the `properties` column from the `desc detail` output.
03-07-2024 09:36 AM
Yes, it is indeed a view which that command errors for.
thanks anyway, appreciate the suggestion
03-07-2024 11:55 PM
I managed to get a response back from support at databricks.
Admittedly it is a bit nuclear, but there is a way of switching it off.
10-10-2024 04:01 PM
@SamDataWalk thanks for posting the solution. I ran into the same problem while writing some logic that updates table constraints across many tables from a config. They were coming back as redacted - this allowed me to actually read them and update as needed.
10-10-2024 04:05 PM
Like your example that redaction behavior seemed to pick up on the column name: a condition that included a column named "URL" was redacted, but one that included a "modifiedDateTime" was not
Join a Regional User Group to connect with local Databricks users. Events will be happening in your city, and you won’t want to miss the chance to attend and share knowledge.
If there isn’t a group near you, start one and help create a community that brings people together.
Request a New Group