conditions.go 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // Copyright 2019 Yunion
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package dameng
  15. import (
  16. "yunion.io/x/sqlchemy"
  17. )
  18. // SEqualsCondition represents equal operation between two fields
  19. type SDamengEqualsCondition struct {
  20. sqlchemy.STupleCondition
  21. }
  22. // WhereClause implementation of SDamengEqualsCondition for ICondition
  23. // 修复达梦数据库报错:数据类型不匹配
  24. func (t *SDamengEqualsCondition) WhereClause() string {
  25. return sqlchemy.TupleConditionWhereClauseWithFuncname(&t.STupleCondition, "TEXT_EQUAL")
  26. }
  27. // Equals filter conditions
  28. func (dameng *SDamengBackend) Equals(f sqlchemy.IQueryField, v interface{}) sqlchemy.ICondition {
  29. // log.Debugf("field %s isFieldText: %v %#v", f.Name(), sqlchemy.IsFieldText(f), f)
  30. if sqlchemy.IsLongFieldText(f) {
  31. c := SDamengEqualsCondition{sqlchemy.NewTupleCondition(f, v)}
  32. return &c
  33. } else {
  34. return dameng.SBaseBackend.Equals(f, v)
  35. }
  36. }