Skip to content
This repository has been archived by the owner on Nov 22, 2022. It is now read-only.

[SPARK-30607] Add pyspark.sql.functions.overlay #347

Merged
merged 1 commit into from
Jan 23, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions third_party/3/pyspark/sql/functions.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ def encode(col: ColumnOrName, charset: str) -> Column: ...
def format_number(col: ColumnOrName, d: str) -> Column: ...
def format_string(format: str, *cols: ColumnOrName) -> Column: ...
def instr(str: ColumnOrName, substr: str) -> Column: ...
def overlay(src: ColumnOrName, replace: ColumnOrName, pos: Union[Column, int], len: Union[Column, int] = ...) -> Column: ...
def substring(str: ColumnOrName, pos: int, len: int) -> Column: ...
def substring_index(str: ColumnOrName, delim: str, count: int) -> Column: ...
def levenshtein(left: ColumnOrName, right: ColumnOrName) -> Column: ...
Expand Down