mirror of
https://github.com/astaxie/beego.git
synced 2024-11-21 21:10:55 +00:00
Merge pull request #4114 from wangle201210/develop-2.0
Add the operator(>,>=,<,<=,=,!=) of orm
This commit is contained in:
commit
71776e4bef
@ -49,6 +49,12 @@ var (
|
||||
"eq": true,
|
||||
"nq": true,
|
||||
"ne": true,
|
||||
">": true,
|
||||
">=": true,
|
||||
"<": true,
|
||||
"<=": true,
|
||||
"=": true,
|
||||
"!=": true,
|
||||
"startswith": true,
|
||||
"endswith": true,
|
||||
"istartswith": true,
|
||||
|
@ -29,11 +29,17 @@ var mysqlOperators = map[string]string{
|
||||
// "regex": "REGEXP BINARY ?",
|
||||
// "iregex": "REGEXP ?",
|
||||
"gt": "> ?",
|
||||
">": "> ?",
|
||||
"gte": ">= ?",
|
||||
">=": ">= ?",
|
||||
"lt": "< ?",
|
||||
"<": "< ?",
|
||||
"lte": "<= ?",
|
||||
"<=": "<= ?",
|
||||
"eq": "= ?",
|
||||
"=": "= ?",
|
||||
"ne": "!= ?",
|
||||
"!=": "!= ?",
|
||||
"startswith": "LIKE BINARY ?",
|
||||
"endswith": "LIKE BINARY ?",
|
||||
"istartswith": "LIKE ?",
|
||||
|
@ -22,10 +22,15 @@ import (
|
||||
// oracle operators.
|
||||
var oracleOperators = map[string]string{
|
||||
"exact": "= ?",
|
||||
"=": "= ?",
|
||||
"gt": "> ?",
|
||||
">": "> ?",
|
||||
"gte": ">= ?",
|
||||
">=": ">= ?",
|
||||
"lt": "< ?",
|
||||
"<": "< ?",
|
||||
"lte": "<= ?",
|
||||
"<=": "<= ?",
|
||||
"//iendswith": "LIKE ?",
|
||||
}
|
||||
|
||||
|
@ -26,11 +26,17 @@ var postgresOperators = map[string]string{
|
||||
"contains": "LIKE ?",
|
||||
"icontains": "LIKE UPPER(?)",
|
||||
"gt": "> ?",
|
||||
">": "> ?",
|
||||
"gte": ">= ?",
|
||||
">=": ">= ?",
|
||||
"lt": "< ?",
|
||||
"<": "< ?",
|
||||
"lte": "<= ?",
|
||||
"<=": "<= ?",
|
||||
"eq": "= ?",
|
||||
"=": "= ?",
|
||||
"ne": "!= ?",
|
||||
"!=": "!= ?",
|
||||
"startswith": "LIKE ?",
|
||||
"endswith": "LIKE ?",
|
||||
"istartswith": "LIKE UPPER(?)",
|
||||
|
@ -28,11 +28,17 @@ var sqliteOperators = map[string]string{
|
||||
"contains": "LIKE ? ESCAPE '\\'",
|
||||
"icontains": "LIKE ? ESCAPE '\\'",
|
||||
"gt": "> ?",
|
||||
">": "> ?",
|
||||
"gte": ">= ?",
|
||||
">=": ">= ?",
|
||||
"lt": "< ?",
|
||||
"<": "< ?",
|
||||
"lte": "<= ?",
|
||||
"<=": "<= ?",
|
||||
"eq": "= ?",
|
||||
"=": "= ?",
|
||||
"ne": "!= ?",
|
||||
"!=": "!= ?",
|
||||
"startswith": "LIKE ? ESCAPE '\\'",
|
||||
"endswith": "LIKE ? ESCAPE '\\'",
|
||||
"istartswith": "LIKE ? ESCAPE '\\'",
|
||||
|
Loading…
Reference in New Issue
Block a user