DataFrame.Hint(String, Object[]) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies some hint on the current DataFrame
.
public Microsoft.Spark.Sql.DataFrame Hint (string name, object[] parameters = default);
member this.Hint : string * obj[] -> Microsoft.Spark.Sql.DataFrame
Public Function Hint (name As String, Optional parameters As Object() = Nothing) As DataFrame
Parameters
- name
- String
Name of the hint
- parameters
- Object[]
Parameters of the hint
Returns
DataFrame object
Remarks
Due to the limitation of the type conversion between CLR and JVM, the type of object in `parameters` should be the same.