equal
deleted
inserted
replaced
1255 if self.distinct_query: |
1255 if self.distinct_query: |
1256 rql = 'DISTINCT ' + rql |
1256 rql = 'DISTINCT ' + rql |
1257 return _cw.execute(rql, args, build_descr=False) |
1257 return _cw.execute(rql, args, build_descr=False) |
1258 |
1258 |
1259 |
1259 |
1260 class RQLConstraint(RepoEnforcedRQLConstraintMixIn, RQLVocabularyConstraint): |
1260 class RQLConstraint(RepoEnforcedRQLConstraintMixIn, BaseRQLConstraint): |
1261 """the rql constraint is similar to the RQLVocabularyConstraint but |
1261 """the rql constraint is similar to the RQLVocabularyConstraint but |
1262 are also enforced at the repository level |
1262 are also enforced at the repository level |
1263 """ |
1263 """ |
1264 distinct_query = False |
1264 distinct_query = False |
1265 |
1265 |