Merge pull request 'fixes bug AL-4506. Tratamento para nao ocasionar excecao da trigger' (!197) from AL-4505 into master
Reviewed-on: utilidades/Flyway#197 Reviewed-by: aristides <aristides@rjconsultores.com.br>master
commit
ae0bd9f638
2
pom.xml
2
pom.xml
|
@ -4,7 +4,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>Flyway</artifactId>
|
||||
<version>1.92.2</version>
|
||||
<version>1.92.3</version>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
declare
|
||||
column_exists exception;
|
||||
pragma exception_init (column_exists , -01451);
|
||||
begin
|
||||
execute immediate 'ALTER SESSION SET NLS_NUMERIC_CHARACTERS = ',.'';
|
||||
exception when column_exists then null;
|
||||
end;
|
||||
/
|
||||
declare
|
||||
column_exists exception;
|
||||
pragma exception_init (column_exists , -01451);
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
declare
|
||||
column_exists exception;
|
||||
pragma exception_init (column_exists , -01451);
|
||||
begin
|
||||
execute immediate 'ALTER SESSION SET NLS_NUMERIC_CHARACTERS = ',.'';
|
||||
exception when column_exists then null;
|
||||
end;
|
||||
/
|
||||
declare
|
||||
column_exists exception;
|
||||
pragma exception_init (column_exists , -01451);
|
||||
|
|
Loading…
Reference in New Issue