(dbName string)
| 139 | } |
| 140 | |
| 141 | func (s *gstate) isCodeSQLDatabase(dbName string) bool { |
| 142 | if s.gj == nil || s.gj.conf == nil { |
| 143 | return false |
| 144 | } |
| 145 | dbConf, ok := s.gj.conf.Databases[dbName] |
| 146 | return ok && dbConf.ManagedType == "codesql" |
| 147 | } |
| 148 | |
| 149 | func codeSQLSelectedTableRefs(dbName string, qc *qcode.QCode) []RowRef { |
| 150 | if qc == nil { |
no outgoing calls
no test coverage detected