IDEMPIERE-5174 Disable System User (#1324)
Found also two minor performance improvements: - avoid counting users when statistics not allowed - change the query where to 1=0, better for the optimizer
This commit is contained in:
parent
9e43a36862
commit
fda23ef1ae
|
@ -352,9 +352,9 @@ public class MSystem extends X_AD_System
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
setDBInfo();
|
setDBInfo();
|
||||||
setInternalUsers();
|
|
||||||
if (isAllowStatistics())
|
if (isAllowStatistics())
|
||||||
{
|
{
|
||||||
|
setInternalUsers();
|
||||||
setStatisticsInfo(getStatisticsInfo(true));
|
setStatisticsInfo(getStatisticsInfo(true));
|
||||||
setProfileInfo(getProfileInfo(true));
|
setProfileInfo(getProfileInfo(true));
|
||||||
}
|
}
|
||||||
|
@ -377,7 +377,7 @@ public class MSystem extends X_AD_System
|
||||||
+ "FROM AD_User u"
|
+ "FROM AD_User u"
|
||||||
+ " INNER JOIN AD_User_Roles ur ON (u.AD_User_ID=ur.AD_User_ID) "
|
+ " INNER JOIN AD_User_Roles ur ON (u.AD_User_ID=ur.AD_User_ID) "
|
||||||
+ "WHERE u.AD_Client_ID<>11" // no Demo
|
+ "WHERE u.AD_Client_ID<>11" // no Demo
|
||||||
+ " AND u.AD_User_ID NOT IN (0,100)"; // no System/SuperUser
|
+ " AND u.AD_User_ID NOT IN (0,10,100)"; // no System/SuperUser
|
||||||
int internalUsers = DB.getSQLValue(null, sql);
|
int internalUsers = DB.getSQLValue(null, sql);
|
||||||
setSupportUnits(internalUsers);
|
setSupportUnits(internalUsers);
|
||||||
} // setInternalUsers
|
} // setInternalUsers
|
||||||
|
@ -437,7 +437,7 @@ public class MSystem extends X_AD_System
|
||||||
+ " || '.' || SYS_CONTEXT('USERENV','DB_DOMAIN') AS DBName "
|
+ " || '.' || SYS_CONTEXT('USERENV','DB_DOMAIN') AS DBName "
|
||||||
+ "FROM DUAL";
|
+ "FROM DUAL";
|
||||||
//
|
//
|
||||||
return "SELECT NULL,NULL FROM AD_System WHERE AD_System_ID=-1";
|
return "SELECT NULL,NULL FROM DUAL WHERE 1=0";
|
||||||
} // getDBInfoSQL
|
} // getDBInfoSQL
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue