|
|||||||||||
|
[GENERAL]
From: carter ck <carterck32(at)hotmail.com>
Date: Tue Oct 30 2007 - 23:07:36 EDT Hi all, I was trying to create function in postgres, but it returns error mentioning the language is NOT defined. The function is as following:
CREATE OR REPLACE FUNCTION test_word_count(TEXT, TEXT) RETURNS INTEGER AS $$
DECLARE
RETURN 1; END; $$ LANGUAGE plpgsql; ERROR: language "plpgsql" does not exist HINT: Use CREATE LANGUAGE to load the language into the database. I was wonderring why it is not included by default? Or have I missed out something in the configuration! Also, how to do a better text search? I have come across the bad performance of LIKE statement. All helps are appreciated. Thanks. Manage multiple email accounts with Windows Live Mail! http://www.get.live.com/wl/all ---------------------------(end of broadcast)---------------------------TIP 3: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faq Received on Tue Oct 30 23:12:54 2007 This archive was generated by hypermail 2.1.8 : Mon Jun 16 2008 - 19:07:47 EDT |
||||||||||
|
|||||||||||