HasOffsetCommand - returns true if optional OffsetCommand is present in SelectCommand Example: SELECT * FROM table OFFSET 100; Returns true SELECT * FROM table LIMIT 10; Returns false
()
| 268 | // SELECT * FROM table LIMIT 10; |
| 269 | // Returns false |
| 270 | func (ls SelectCommand) HasOffsetCommand() bool { |
| 271 | if ls.OffsetCommand == nil { |
| 272 | return false |
| 273 | } |
| 274 | return true |
| 275 | } |
| 276 | |
| 277 | // HasJoinCommand - returns true if optional JoinCommand is present in SelectCommand |
| 278 | // |
no outgoing calls