mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
Some PostgreSQL fixups
- Curiously, a result column alias of 'name' needs to be declared with 'AS name' - Removed dangling semi-colon, which probably isn't an issue git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@20829 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -262,12 +262,12 @@
|
||||
</select>
|
||||
|
||||
<select id="select_oldAttrCustomNames" resultClass="string">
|
||||
select
|
||||
ga.name name
|
||||
select
|
||||
ga.name as name
|
||||
from
|
||||
alf_global_attributes ga
|
||||
where
|
||||
ga.name not in ('alfresco-tenants', '.avm_lock_table', '.PropertyBackedBeans', '.ChainingUserRegistrySynchronizer');
|
||||
name not in ('alfresco-tenants', '.avm_lock_table', '.PropertyBackedBeans', '.ChainingUserRegistrySynchronizer')
|
||||
</select>
|
||||
|
||||
<!-- -->
|
||||
|
Reference in New Issue
Block a user