summaryrefslogtreecommitdiffstats
path: root/tests/integration/session_test.go
Commit message (Collapse)AuthorAgeFilesLines
* Fix session key conflict with database keyword (#28613)Lunny Xiao2023-12-271-0/+37
This is a regression from #28220 . `builder.Cond` will not add `` ` `` automatically but xorm method `Get/Find` adds `` ` ``. This PR also adds tests to prevent the method from being implemented incorrectly. The tests are added in `integrations` to test every database.