Skip to content

Commit

Permalink
Address nits
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaschat-db committed Dec 16, 2024
1 parent d5991d7 commit 416e097
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion python/delta/tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ def addFeatureSupport(self, featureName: str) -> None:
DeltaTable._verify_type_str(featureName, "featureName")
self._jdt.addFeatureSupport(featureName)

@since(4.0) # type: ignore[arg-type]
@since(3.4) # type: ignore[arg-type]
def dropFeatureSupport(self, featureName: str) -> None:
"""
Modify the protocol to drop a supported feature. The operation always normalizes the
Expand Down
4 changes: 2 additions & 2 deletions spark/src/main/scala/io/delta/tables/DeltaTable.scala
Original file line number Diff line number Diff line change
Expand Up @@ -579,10 +579,10 @@ class DeltaTable private[tables](
*
* See online documentation for more details.
*
* @param featureName: The name of the feature to drop.
* @param featureName The name of the feature to drop.
* @return None.
*
* @since 4.0.0
* @since 3.4.0
*/
def dropFeatureSupport(featureName: String): Unit = withActiveSession(sparkSession) {
val alterTableCmd = AlterTableDropFeatureDeltaCommand(table, featureName)
Expand Down

0 comments on commit 416e097

Please sign in to comment.