You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
原始日志为:
SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@54150c67] was not registered for synchronization because synchronization is not active
JDBC Connection [HikariProxyConnection@930199905 wrapping com.mysql.cj.jdbc.ConnectionImpl@60a10cf2] will not be managed by Spring
==> Preparing: SELECT DISTINCT t2.area_code FROM base_group_car t LEFT JOIN base_car t1 ON t1.id = t.car_id AND t1.deleted = 0 LEFT JOIN base_company t2 ON t2.id = t1.comp_id AND t2.deleted = 0 WHERE t.group_id = ? AND t2.area_code IS NOT NULL
==> Parameters: 1539892375719923714(Long)
<== Columns: area_code
<== Row: 350300
<== Row: 350100
<== Total: 2
Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@54150c67]
Creating a new SqlSession
SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@109191f6] was not registered for synchronization because synchronization is not active
JDBC Connection [HikariProxyConnection@1822151095 wrapping com.mysql.cj.jdbc.ConnectionImpl@60a10cf2] will not be managed by Spring
==> Preparing: select distinct t.alarm_Type from sys_alarm_settings t WHERE t.area_code in (?,?)
==> Parameters: 350300(String), 350100(String)
<== Columns: alarm_Type
<== Row: ALAT0028_ALAS0002
<== Row: ALAT0057_ALAS0004
解析后的日志:
SELECT DISTINCT t2.area_code FROM base_group_car t LEFT JOIN base_car t1 ON t1.id = t.car_id AND t1.deleted = 0 LEFT JOIN base_company t2 ON t2.id = t1.comp_id AND t2.deleted = 0 WHERE t.group_id = 1544612448196055041 AND t2.area_code IS NOT NULL;
select distinct t.alarm_Type from sys_alarm_settings t WHERE t.area_code in (1539892375719923714,{});
The text was updated successfully, but these errors were encountered:
iShot_2022-08-30_13.59.11.mp4
原始日志为:
SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@54150c67] was not registered for synchronization because synchronization is not active
JDBC Connection [HikariProxyConnection@930199905 wrapping com.mysql.cj.jdbc.ConnectionImpl@60a10cf2] will not be managed by Spring
==> Preparing: SELECT DISTINCT t2.area_code FROM base_group_car t LEFT JOIN base_car t1 ON t1.id = t.car_id AND t1.deleted = 0 LEFT JOIN base_company t2 ON t2.id = t1.comp_id AND t2.deleted = 0 WHERE t.group_id = ? AND t2.area_code IS NOT NULL
==> Parameters: 1539892375719923714(Long)
<== Columns: area_code
<== Row: 350300
<== Row: 350100
<== Total: 2
Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@54150c67]
Creating a new SqlSession
SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@109191f6] was not registered for synchronization because synchronization is not active
JDBC Connection [HikariProxyConnection@1822151095 wrapping com.mysql.cj.jdbc.ConnectionImpl@60a10cf2] will not be managed by Spring
==> Preparing: select distinct t.alarm_Type from sys_alarm_settings t WHERE t.area_code in (?,?)
==> Parameters: 350300(String), 350100(String)
<== Columns: alarm_Type
<== Row: ALAT0028_ALAS0002
<== Row: ALAT0057_ALAS0004
解析后的日志:
SELECT DISTINCT t2.area_code FROM base_group_car t LEFT JOIN base_car t1 ON t1.id = t.car_id AND t1.deleted = 0 LEFT JOIN base_company t2 ON t2.id = t1.comp_id AND t2.deleted = 0 WHERE t.group_id = 1544612448196055041 AND t2.area_code IS NOT NULL;
select distinct t.alarm_Type from sys_alarm_settings t WHERE t.area_code in (1539892375719923714,{});
The text was updated successfully, but these errors were encountered: