MySQL Forums
Forum List  »  Partitioning

Re: Comments: Giuseppe Maxia - MySQL 5.1 partitions in practice
Posted by: Ben. H.
Date: January 08, 2008 05:13AM

I've got a syntax error from the load.sql script given on MySQL Forge.

Near to the end,

ArrDelay = if(@ArrDelay is null or @ArrDelay =, 0, @ArrDelay),
DepDelay = if(@DepDelay is null or @DepDelay =, 0, @DepDelay)

failed. I think there is some missing value after the =. I tried with 0 so,

ArrDelay = if(@ArrDelay is null or @ArrDelay = 0, 0, @ArrDelay),
DepDelay = if(@DepDelay is null or @DepDelay = 0, 0, @DepDelay)

Is that right?

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Comments: Giuseppe Maxia - MySQL 5.1 partitions in practice
4175
January 08, 2008 05:13AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.