File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -182,12 +182,12 @@ class SnowflakeCursor:
182182 connection: The connection object by which the cursor was created.
183183 errorhandle: The class that handles error handling.
184184 is_file_transfer: Whether, or not the current command is a put, or get.
185-
186- TODO:
187- Most of these attributes have no reason to be properties, we could just store them in public variables.
188- Calling a function is expensive in Python and most of these getters are unnecessary.
189185 """
190186
187+ # TODO:
188+ # Most of these attributes have no reason to be properties, we could just store them in public variables.
189+ # Calling a function is expensive in Python and most of these getters are unnecessary.
190+
191191 INSERT_SQL_RE = re .compile (r"^insert\s+into" , flags = re .IGNORECASE )
192192 COMMENT_SQL_RE = re .compile (r"/\*.*\*/" )
193193 INSERT_SQL_VALUES_RE = re .compile (
You can’t perform that action at this time.
0 commit comments