mirror of
				https://github.com/gyurix1968/guacamole-client.git
				synced 2025-10-31 17:13:21 +00:00 
			
		
		
		
	GUAC-1103: No INSERT IGNORE in postgres.
This commit is contained in:
		| @@ -103,7 +103,7 @@ | ||||
|     <!-- Insert all given permissions --> | ||||
|     <insert id="insert" parameterType="org.glyptodon.guacamole.auth.jdbc.permission.ObjectPermissionModel"> | ||||
|  | ||||
|         INSERT IGNORE INTO guacamole_connection_group_permission ( | ||||
|         INSERT INTO guacamole_connection_group_permission ( | ||||
|             user_id, | ||||
|             permission, | ||||
|             connection_group_id | ||||
|   | ||||
| @@ -103,7 +103,7 @@ | ||||
|     <!-- Insert all given permissions --> | ||||
|     <insert id="insert" parameterType="org.glyptodon.guacamole.auth.jdbc.permission.ObjectPermissionModel"> | ||||
|  | ||||
|         INSERT IGNORE INTO guacamole_connection_permission ( | ||||
|         INSERT INTO guacamole_connection_permission ( | ||||
|             user_id, | ||||
|             permission, | ||||
|             connection_id | ||||
|   | ||||
| @@ -78,7 +78,7 @@ | ||||
|     <!-- Insert all given permissions --> | ||||
|     <insert id="insert" parameterType="org.glyptodon.guacamole.auth.jdbc.permission.SystemPermissionModel"> | ||||
|  | ||||
|         INSERT IGNORE INTO guacamole_system_permission ( | ||||
|         INSERT INTO guacamole_system_permission ( | ||||
|             user_id, | ||||
|             permission | ||||
|         ) | ||||
|   | ||||
| @@ -109,7 +109,7 @@ | ||||
|     <!-- Insert all given permissions --> | ||||
|     <insert id="insert" parameterType="org.glyptodon.guacamole.auth.jdbc.permission.ObjectPermissionModel"> | ||||
|  | ||||
|         INSERT IGNORE INTO guacamole_user_permission ( | ||||
|         INSERT INTO guacamole_user_permission ( | ||||
|             user_id, | ||||
|             permission, | ||||
|             affected_user_id | ||||
|   | ||||
		Reference in New Issue
	
	Block a user