Re: FATAL 1: btree
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: "Chau, Artemis" <artemis.chau@intel.com>
Cc: "'pgsql-bugs@postgresql.org'" <pgsql-bugs@postgresql.org>
Date: 2000-11-03T16:19:55Z
Lists: pgsql-bugs
"Chau, Artemis" <artemis.chau@intel.com> writes: >> I wrote a function, the error I got is >> FATAL 1: btree: cannot split if start (2) >= maxoff (1). You are running into limits on the size of a function body. You can't safely make the body longer than about 2700 bytes in 6.5.*. The limit is about 8K in 7.0, and 7.1 will have effectively no limit. >> I am using postgressql 6.5.2. (Please don't tell me to upgrade to 7.0 >> because we can't yet). You really should upgrade ;-). In the meantime, your only alternative is to write shorter functions. Try splitting the work into multiple functions... regards, tom lane