reydb 1.2.1__py3-none-any.whl → 1.2.3__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.
reydb/rbase.py CHANGED
@@ -75,7 +75,7 @@ def handle_sql(sql: str | TextClause) -> TextClause:
75
75
  TextClause instance.
76
76
  """
77
77
 
78
- # Handle parameter.
78
+ # Set parameter.
79
79
  if type(sql) == TextClause:
80
80
  sql = sql.text
81
81
 
@@ -102,7 +102,7 @@ def handle_data(data: list[dict], sql: str | TextClause) -> list[dict]:
102
102
  Filled data.
103
103
  """
104
104
 
105
- # Handle parameter.
105
+ # Set parameter.
106
106
  if type(sql) == TextClause:
107
107
  sql = sql.text
108
108
 
@@ -298,7 +298,7 @@ def get_syntax(self, sql: str | TextClause) -> list[str]:
298
298
  SQL syntax type for each segment.
299
299
  """
300
300
 
301
- # Handle parameter.
301
+ # Set parameter.
302
302
  if type(sql) == TextClause:
303
303
  sql = sql.text
304
304
 
@@ -325,7 +325,7 @@ def is_multi_sql(self, sql: str | TextClause) -> bool:
325
325
  Judgment result.
326
326
  """
327
327
 
328
- # Handle parameter.
328
+ # Set parameter.
329
329
  if type(sql) == TextClause:
330
330
  sql = sql.text
331
331