| 675 | } |
| 676 | |
| 677 | static void* PythonSessionCtx_ShallowCopy(void* arg){ |
| 678 | PythonSessionCtx* session = arg; |
| 679 | ++session->refCount; |
| 680 | return session; |
| 681 | } |
| 682 | |
| 683 | static void* PythonSessionCtx_ShallowCopyWithFep(FlatExecutionPlan* fep, void* arg){ |
| 684 | return PythonSessionCtx_ShallowCopy(arg); |
no outgoing calls
no test coverage detected