omnata-plugin-runtime 0.5.8a159__py3-none-any.whl → 0.5.9a161__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- omnata_plugin_runtime/omnata_plugin.py +21 -3
 - {omnata_plugin_runtime-0.5.8a159.dist-info → omnata_plugin_runtime-0.5.9a161.dist-info}/METADATA +1 -1
 - {omnata_plugin_runtime-0.5.8a159.dist-info → omnata_plugin_runtime-0.5.9a161.dist-info}/RECORD +5 -5
 - {omnata_plugin_runtime-0.5.8a159.dist-info → omnata_plugin_runtime-0.5.9a161.dist-info}/LICENSE +0 -0
 - {omnata_plugin_runtime-0.5.8a159.dist-info → omnata_plugin_runtime-0.5.9a161.dist-info}/WHEEL +0 -0
 
| 
         @@ -2429,7 +2429,16 @@ def find_udtf_classes(path:str = '.') -> List[UDTFDefinition]: 
     | 
|
| 
       2429 
2429 
     | 
    
         
             
                    for name, obj in inspect.getmembers(module):
         
     | 
| 
       2430 
2430 
     | 
    
         
             
                        # Check if the class has the specified attribute
         
     | 
| 
       2431 
2431 
     | 
    
         
             
                        if isinstance(obj, UDTFDefinition) and cast(UDTFDefinition,obj).language == 'java':
         
     | 
| 
       2432 
     | 
    
         
            -
                             
     | 
| 
      
 2432 
     | 
    
         
            +
                            udtf_obj = cast(UDTFDefinition,obj)
         
     | 
| 
      
 2433 
     | 
    
         
            +
                            if udtf_obj.language == 'java':
         
     | 
| 
      
 2434 
     | 
    
         
            +
                                # because the decorator wasn't used, we need to check if we need to add the connection_parameters parameter
         
     | 
| 
      
 2435 
     | 
    
         
            +
                                if udtf_obj.expose_to_consumer:
         
     | 
| 
      
 2436 
     | 
    
         
            +
                                    if len(udtf_obj.params) == 0 or udtf_obj.params[0].name.upper() != 'CONNECTION_PARAMETERS':
         
     | 
| 
      
 2437 
     | 
    
         
            +
                                        udtf_obj.params = [SnowflakeFunctionParameter(
         
     | 
| 
      
 2438 
     | 
    
         
            +
                                                            name='CONNECTION_PARAMETERS',
         
     | 
| 
      
 2439 
     | 
    
         
            +
                                                            data_type='OBJECT',
         
     | 
| 
      
 2440 
     | 
    
         
            +
                                                            description='The connection object, obtained from calling PLUGIN.PLUGIN_CONNECTION.')] + udtf_obj.params
         
     | 
| 
      
 2441 
     | 
    
         
            +
                                matching_classes.append(udtf_obj)
         
     | 
| 
       2433 
2442 
     | 
    
         | 
| 
       2434 
2443 
     | 
    
         
             
                return matching_classes
         
     | 
| 
       2435 
2444 
     | 
    
         | 
| 
         @@ -2535,7 +2544,16 @@ def find_udf_functions(path:str = '.') -> List[UDFDefinition]: 
     | 
|
| 
       2535 
2544 
     | 
    
         
             
                    # java doesn't use the python decorator, so we need to check for the class directly
         
     | 
| 
       2536 
2545 
     | 
    
         
             
                    for name, obj in inspect.getmembers(module):
         
     | 
| 
       2537 
2546 
     | 
    
         
             
                        # Check if the class has the specified attribute
         
     | 
| 
       2538 
     | 
    
         
            -
                        if isinstance(obj, UDFDefinition) 
     | 
| 
       2539 
     | 
    
         
            -
                             
     | 
| 
      
 2547 
     | 
    
         
            +
                        if isinstance(obj, UDFDefinition):
         
     | 
| 
      
 2548 
     | 
    
         
            +
                            udf_obj = cast(UDFDefinition,obj)
         
     | 
| 
      
 2549 
     | 
    
         
            +
                            if udf_obj.language == 'java':
         
     | 
| 
      
 2550 
     | 
    
         
            +
                                # because the decorator wasn't used, we need to check if we need to add the connection_parameters parameter
         
     | 
| 
      
 2551 
     | 
    
         
            +
                                if udf_obj.expose_to_consumer:
         
     | 
| 
      
 2552 
     | 
    
         
            +
                                    if len(udf_obj.params) == 0 or udf_obj.params[0].name.upper() != 'CONNECTION_PARAMETERS':
         
     | 
| 
      
 2553 
     | 
    
         
            +
                                        udf_obj.params = [SnowflakeFunctionParameter(
         
     | 
| 
      
 2554 
     | 
    
         
            +
                                                            name='CONNECTION_PARAMETERS',
         
     | 
| 
      
 2555 
     | 
    
         
            +
                                                            data_type='OBJECT',
         
     | 
| 
      
 2556 
     | 
    
         
            +
                                                            description='The connection object, obtained from calling PLUGIN.PLUGIN_CONNECTION.')] + udf_obj.params
         
     | 
| 
      
 2557 
     | 
    
         
            +
                                matching_classes.append(udf_obj)
         
     | 
| 
       2540 
2558 
     | 
    
         | 
| 
       2541 
2559 
     | 
    
         
             
                return matching_classes
         
     | 
    
        {omnata_plugin_runtime-0.5.8a159.dist-info → omnata_plugin_runtime-0.5.9a161.dist-info}/RECORD
    RENAMED
    
    | 
         @@ -3,10 +3,10 @@ omnata_plugin_runtime/api.py,sha256=FxzTqri4no8ClkOm7vZADG8aD47jcGBCTTQDEORmOJM, 
     | 
|
| 
       3 
3 
     | 
    
         
             
            omnata_plugin_runtime/configuration.py,sha256=TI6GaVFhewVawBCaYN34GujY57qEP6q2nik4YpSEk5s,38100
         
     | 
| 
       4 
4 
     | 
    
         
             
            omnata_plugin_runtime/forms.py,sha256=GzSPEwcijsoPCXEO1mHiE8ylvX_KSE5TkhwqkymA2Ss,19755
         
     | 
| 
       5 
5 
     | 
    
         
             
            omnata_plugin_runtime/logging.py,sha256=bn7eKoNWvtuyTk7RTwBS9UARMtqkiICtgMtzq3KA2V0,3272
         
     | 
| 
       6 
     | 
    
         
            -
            omnata_plugin_runtime/omnata_plugin.py,sha256= 
     | 
| 
      
 6 
     | 
    
         
            +
            omnata_plugin_runtime/omnata_plugin.py,sha256=FkJXOxU6n63DTgiGB-rD1vk2nHjr6qoWnb28RxSlE_w,128957
         
     | 
| 
       7 
7 
     | 
    
         
             
            omnata_plugin_runtime/plugin_entrypoints.py,sha256=PFSLsYEVnWHVvSoOYTtTK2JY6pp6_8_eYP53WqLRiPE,27975
         
     | 
| 
       8 
8 
     | 
    
         
             
            omnata_plugin_runtime/rate_limiting.py,sha256=DVQ_bc-mVLBkrU1PTns1MWXhHiLpSB5HkWCcdePtJ2A,25611
         
     | 
| 
       9 
     | 
    
         
            -
            omnata_plugin_runtime-0.5. 
     | 
| 
       10 
     | 
    
         
            -
            omnata_plugin_runtime-0.5. 
     | 
| 
       11 
     | 
    
         
            -
            omnata_plugin_runtime-0.5. 
     | 
| 
       12 
     | 
    
         
            -
            omnata_plugin_runtime-0.5. 
     | 
| 
      
 9 
     | 
    
         
            +
            omnata_plugin_runtime-0.5.9a161.dist-info/LICENSE,sha256=IMF9i4xIpgCADf0U-V1cuf9HBmqWQd3qtI3FSuyW4zE,26526
         
     | 
| 
      
 10 
     | 
    
         
            +
            omnata_plugin_runtime-0.5.9a161.dist-info/METADATA,sha256=lmBdPKUP3HfLI8gv115ZsT5CiNlmTUxU72HGYDstENA,1985
         
     | 
| 
      
 11 
     | 
    
         
            +
            omnata_plugin_runtime-0.5.9a161.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
         
     | 
| 
      
 12 
     | 
    
         
            +
            omnata_plugin_runtime-0.5.9a161.dist-info/RECORD,,
         
     | 
    
        {omnata_plugin_runtime-0.5.8a159.dist-info → omnata_plugin_runtime-0.5.9a161.dist-info}/LICENSE
    RENAMED
    
    | 
         
            File without changes
         
     | 
    
        {omnata_plugin_runtime-0.5.8a159.dist-info → omnata_plugin_runtime-0.5.9a161.dist-info}/WHEEL
    RENAMED
    
    | 
         
            File without changes
         
     |