Gilles Darold

Results 346 comments of Gilles Darold

Hi Helena, There is no magic configuration directive for that yet. I can think about adding a REPLACE_VALUE directive that can be defined to use REPLACE(column) in the Oracle query...

At this level I guess that all column with blank must be turned into empty string so better is to have a REPLACE_VALUE or BLANK_TO_EMPTY directive that can handle the...

Commit 0f2dabd adds TRANSFORM_VALUE configuration directive to be able to apply an expression when retrieving data from Oracle. For your issue you could use: ``` TRANSFORM_VALUE TEST_TRANSFORM[COL1:regexp_replace("COL1", '^ $', '')]...

I am not a specialist of geometry data type so if you can provide an example with the expected PostgreSQL conversion it will be helpful.

Commit ec400ad might fix this issue, can you confirm please?

Need to be fixed, for the moment there is no automatic translation of DBMS_Snapshot.Refresh but this is trivial to fix.

Yes this is normal, %ROWTYPE doesn't exist in PostgreSQL and is useless so it is removed except for cursors where it is replaced by RECORD.

You are right, I don't know where this mistake come from, removing of %ROWTYPE should be only limited to TYPE REF CURSOR declaration. Commit d970f1b might fix this issue.

Hi Eric, What doesn't work on function declarations? Can you provide an example please?