diff options
author | ivan <ivan> | 2011-04-15 18:06:35 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-04-15 18:06:35 +0000 |
commit | 0e4359cc3f43c78c557d259a10c24f0372d9f464 (patch) | |
tree | b9159ee8b1540f0eb0bf64b015aa8b59dcb31046 /FS | |
parent | 2fcffc8e5ccd17c9462d8df88e4b2155bfa24f61 (diff) |
mysql fix for CAST ( vs CAST(
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/part_event/Condition.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/part_event/Condition.pm b/FS/FS/part_event/Condition.pm index 69027744a..efe0d3cf3 100644 --- a/FS/FS/part_event/Condition.pm +++ b/FS/FS/part_event/Condition.pm @@ -469,7 +469,7 @@ sub condition_sql_option_integer { my $integer = ($driver_name =~ /^mysql/) ? 'UNSIGNED INTEGER' : 'INTEGER'; - 'CAST ('. $class->condition_sql_option($option). " AS $integer )"; + 'CAST('. $class->condition_sql_option($option). " AS $integer )"; } =head1 NEW CONDITION CLASSES |