Skip to content

Commit

Permalink
Fix backslash in embedded configuration file that was removed by the …
Browse files Browse the repository at this point in the history
…shell. Thanks to kuzmaka for the report.
  • Loading branch information
Gilles Darold committed Feb 17, 2017
1 parent 3ea45dd commit 0573bd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ COPY_FREEZE 0
# replace a type with a precision and scale you need to escape the coma with
# a backslash. For example, if you want to replace all NUMBER(*,0) into bigint
# instead of numeric(38)add the following:
# DATA_TYPE NUMBER(*\,0):bigint
# DATA_TYPE NUMBER(*\\,0):bigint
# Here is the default replacement for all Oracle's types. You don't have to
# recopy all type conversion but just the one you want to rewrite.
#DATA_TYPE DATE:timestamp,LONG:text,LONG RAW:bytea,CLOB:text,NCLOB:text,BLOB:bytea,BFILE:bytea,RAW:bytea,ROWID:oid,FLOAT:double precision,DEC:decimal,DECIMAL:decimal,DOUBLE PRECISION:double precision,INT:numeric,INTEGER:numeric,REAL:real,SMALLINT:smallint,BINARY_FLOAT:double precision,BINARY_DOUBLE:double precision,TIMESTAMP:timestamp,XMLTYPE:xml,BINARY_INTEGER:integer,PLS_INTEGER:integer,TIMESTAMP WITH TIME ZONE:timestamp with time zone,TIMESTAMP WITH LOCAL TIME ZONE:timestamp with time zone
Expand Down Expand Up @@ -660,7 +660,7 @@ ENABLE_MICROSECOND 1
# exported as timestamp by Ora2Pg can be forced into type date. Value is
# a comma-separated list of TABLE:COLUMN:TYPE structure. If you need to use
# comma or space inside type definition you will have to backslash them.
#MODIFY_TYPE TABLE1:COL3:varchar,TABLE1:COL4:decimal(9\,6)
#MODIFY_TYPE TABLE1:COL3:varchar,TABLE1:COL4:decimal(9\\,6)
#------------------------------------------------------------------------------
# GRANT SECTION (Control priviledge and owner export)
Expand Down

0 comments on commit 0573bd1

Please sign in to comment.