summaryrefslogtreecommitdiffstats
path: root/sonar-db/src
Commit message (Collapse)AuthorAgeFilesLines
...
* SONAR-7549 SONAR-6171 verifies UTF8 charset and case-sensitive collationSimon Brandhof2016-04-2516-473/+1040
|
* SONAR-7553 DAO of CE_QUEUE count number of rows by statusTeryk Bellahsene2016-04-214-12/+42
|
* SONAR-7553 DAO of CE_ACTIVITY count number of tasks still failingTeryk Bellahsene2016-04-214-3/+39
|
* SONAR-7187 WS api/ce/activity stop using count(1) on DB table CE_QUEUETeryk Bellahsene2016-04-211-1/+1
|
* SONAR-7553 Create composite DB index CE_ACTIVITY(is_last, status)Teryk Bellahsene2016-04-213-1/+6
|
* SONAR-7187 Remove paging from api/ce/activityJulien Lancelot2016-04-215-62/+6
| | | | In order to have no more full scan on the ce_activity table, we had to remove paging as it was executing a select count(* from ce_activity)
* Add comment on query to keep authorized users for a project and a roleJulien Lancelot2016-04-194-37/+15
| | | | Anyone permission cannot be taking into by this method
* Add query to keep authorized users for a project and a roleJulien Lancelot2016-04-1810-17/+180
|
* Add ComponentDao#insertBatch() for batch insertsSimon Brandhof2016-04-154-3/+49
|
* Add UserDao.selectByIdsJulien Lancelot2016-04-155-14/+51
|
* SONAR-7187 Fix perf issue in selectByQueryJulien Lancelot2016-04-144-5/+60
| | | | Replace usage of RowBounds by SQL pagination
* Add PropertiesDao.deleteByIdJulien Lancelot2016-04-116-0/+48
|
* SONAR-7528 WS api/measures/component handles developer measuresTeryk Bellahsene2016-04-072-2/+7
|
* SONAR-7528 WS api/measures/component_tree handles developer measuresTeryk Bellahsene2016-04-074-12/+89
|
* Fix quality flawsJulien Lancelot2016-04-062-3/+117
|
* Fix quality flawsSimon Brandhof2016-04-062-2/+3
|
* Fix quality flawsTeryk Bellahsene2016-04-0516-19/+25
|
* SONAR-7473 Clean useless codeJulien Lancelot2016-04-048-31/+31
|
* SONAR-7480 optimize SQL request in QP Search WSSébastien Lesaint2016-03-314-8/+130
|
* MMF-165 Remove action plan mentionsTeryk Bellahsene2016-03-304-147/+0
|
* SONAR-7470 Delete manual rules from DBJulien Lancelot2016-03-298-3/+165
|
* SONAR-7470 Remove 'manual' from SQL queriesJulien Lancelot2016-03-295-52/+14
|
* SONAR-7470 Drop ability to manage manual rules from WSJulien Lancelot2016-03-291-9/+0
|
* SONAR-7472 Delete manual issues from DBJulien Lancelot2016-03-298-3/+251
|
* SONAR-7473 Drop 'reporter' field from backendJulien Lancelot2016-03-2912-48/+20
|
* SONAR-7441 no DB Component should have @ServerSide nor @ComputeEngineSideSébastien Lesaint2016-03-296-24/+0
|
* SONAR-7441 add ComputeEngineSide annotation where applicableSébastien Lesaint2016-03-296-0/+12
|
* SONAR-7466 Remove ACTION_PLANS table and related codeTeryk Bellahsene2016-03-2544-1420/+7
|
* SONAR-6171 Make sure at server startup that the DB is configured to use the ↵Simon Brandhof2016-03-242-0/+473
| | | | UTF8 charset and to be case-sensitive
* SONAR-7330 Remove measures on rules in DBJulien Lancelot2016-03-238-4/+148
|
* SONAR-7330 Remove usage of PROJECT_MEASURES.RULE_IDJulien Lancelot2016-03-2316-184/+20
|
* Add missing UTJulien Lancelot2016-03-233-60/+344
|
* Fix quality flawsJulien Lancelot2016-03-231-1/+1
|
* SONAR-7307 retrieve only one row when polling queue tableSébastien Lesaint2016-03-233-3/+5
|
* Fix quality flawsJulien Lancelot2016-03-221-1/+1
|
* SONAR-7448 Allow groups synchronization in IdentityProvider APIJulien Lancelot2016-03-224-0/+52
|
* SONAR-7254 Feed user.local when creating/updating/reactivating a userJulien Lancelot2016-03-211-0/+41
|
* SONAR-7254 Replace usage of UserIndex.getByLogin() by ↵Julien Lancelot2016-03-212-1/+48
| | | | UserDao.selectOrFailByLogin()
* SONAR-7254 Add USERS.LOCAL columnJulien Lancelot2016-03-217-14/+44
|
* SONAR-7106 WS api/permissions/search_project_permissions rely on ↵Teryk Bellahsene2016-03-182-39/+0
| | | | resource_index to search for component name
* SONAR-7106 WS api/permissions/bulk_apply_template bulk apply permission templateTeryk Bellahsene2016-03-183-14/+12
|
* SONAR-7458 new component org.sonar.api.utils.VersionSimon Brandhof2016-03-161-25/+7
|
* SONAR-7129 SONAR-7135 optimize SQL requests on MySQLSimon Brandhof2016-03-162-17/+44
|
* Fix some quality flawsJulien HENRY2016-03-161-1/+1
|
* SONAR-7321 sanitize some DB columnsSimon Brandhof2016-03-154-5/+6
| | | | | | | - ISSUE_CHANGES.USER_LOGIN on all databases except H2 - ACTIVITIES.USER_LOGIN is too small on MsSQL and H2 - RULES.PLUGIN_CONFIG_KEY is too big on H2 - AUTHORS.LOGIN is too small on H2
* Fix quality flawsSimon Brandhof2016-03-151-1/+1
|
* SONAR-7260 Fail fast if version of database is not supportedSimon Brandhof2016-03-142-36/+101
|
* SONAR-7453 Fix RULES alias for OracleJulien Lancelot2016-03-112-17/+17
|
* SONAR-7453 Fix RULES columns size for OracleJulien Lancelot2016-03-115-26/+26
|
* SONAR-7325 add missing testSimon Brandhof2016-03-101-14/+56
|