()
| 1019 | } |
| 1020 | |
| 1021 | func (s *gstate) tx() (tx *sql.Tx) { |
| 1022 | if s.r.requestconfig != nil { |
| 1023 | tx = s.r.requestconfig.Tx |
| 1024 | } |
| 1025 | return |
| 1026 | } |
| 1027 | |
| 1028 | func (s *gstate) key() (key string) { |
| 1029 | // CRITICAL: Include database in cache key to prevent cross-database cache collisions. |
no outgoing calls
no test coverage detected