@@ -8,7 +8,7 @@ def __withField(self: Column, fieldName: str, fieldValue: Column):
88    If schema contains multiple fields with fieldName, they will all be replaced with fieldValue. 
99    """ 
1010    sc  =  SparkContext ._active_spark_context 
11-     _columnWithCustomMethods  =  sc ._jvm .com .mse . column .methods .ColumnWithCustomMethods (self ._jc )
11+     _columnWithCustomMethods  =  sc ._jvm .com .github . fqaiser94 . mse .methods .ColumnWithCustomMethods (self ._jc )
1212    _column  =  _columnWithCustomMethods .withField (fieldName , fieldValue ._jc )
1313    return  Column (_column )
1414
@@ -20,7 +20,7 @@ def __dropFields(self: Column, *fieldNames: str):
2020    If schema contains multiple fields matching any one of the given fieldNames, they will all be dropped. 
2121    """ 
2222    sc  =  SparkContext ._active_spark_context 
23-     _columnWithCustomMethods  =  sc ._jvm .com .mse . column .methods .ColumnWithCustomMethods (self ._jc )
23+     _columnWithCustomMethods  =  sc ._jvm .com .github . fqaiser94 . mse .methods .ColumnWithCustomMethods (self ._jc )
2424    _fieldNames  =  sc ._jvm .PythonUtils .toSeq (fieldNames )
2525    _column  =  _columnWithCustomMethods .dropFields (_fieldNames )
2626    return  Column (_column )
@@ -33,7 +33,7 @@ def __withFieldRenamed(self: Column, existingFieldName: str, newFieldName: str):
3333    If schema contains multiple fields with existingFieldName, they will all be renamed to newFieldName. 
3434    """ 
3535    sc  =  SparkContext ._active_spark_context 
36-     _columnWithCustomMethods  =  sc ._jvm .com .mse . column .methods .ColumnWithCustomMethods (self ._jc )
36+     _columnWithCustomMethods  =  sc ._jvm .com .github . fqaiser94 . mse .methods .ColumnWithCustomMethods (self ._jc )
3737    _column  =  _columnWithCustomMethods .withFieldRenamed (existingFieldName , newFieldName )
3838    return  Column (_column )
3939
@@ -52,6 +52,6 @@ def add_struct_field(nestedStruct: str, fieldName: str, fieldValue: Column):
5252    :return: a copy the top-level struct column (a) with field added/replaced. 
5353    """ 
5454    sc  =  SparkContext ._active_spark_context 
55-     _add_struct_field  =  sc ._jvm .com .mse . column .methods .add_struct_field 
55+     _add_struct_field  =  sc ._jvm .com .github . fqaiser94 . mse .methods .add_struct_field 
5656    _column  =  _add_struct_field (nestedStruct , fieldName , fieldValue ._jc )
5757    return  Column (_column )
0 commit comments