[Fusionforge-commits] FusionForge branch Branch_5_3 updated. 168ef3e960e069e4971aaf551edc80740f542162

Franck Villaume nerville at fusionforge.org
Tue Mar 4 13:02:24 CET 2014


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FusionForge".

The branch, Branch_5_3 has been updated
       via  168ef3e960e069e4971aaf551edc80740f542162 (commit)
      from  71fbeaa27d923a755c3bd03ac07d2284071fec93 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 168ef3e960e069e4971aaf551edc80740f542162
Author: Franck Villaume <franck.villaume at trivialdev.com>
Date:   Tue Mar 4 13:01:04 2014 +0100

    fix update_vectors function: typo skill_data_id -> skills_data_id

diff --git a/src/db/20140304-fix_update_vectors_function.sql b/src/db/20140304-fix_update_vectors_function.sql
index 9867601..990b3bb 100644
--- a/src/db/20140304-fix_update_vectors_function.sql
+++ b/src/db/20140304-fix_update_vectors_function.sql
@@ -94,7 +94,7 @@ BEGIN
 	-- **** skills_data table ****
 	ELSIF table_name = ''skills_data'' THEN
 		IF TG_OP = ''INSERT'' THEN
-			INSERT INTO skills_data_idx (skills_data_id, vectors) VALUES (NEW.skill_data_id, to_tsvector(coalesce(NEW.title,'''') ||'' ''|| coalesce(NEW.keywords,'''')));
+			INSERT INTO skills_data_idx (skills_data_id, vectors) VALUES (NEW.skills_data_id, to_tsvector(coalesce(NEW.title,'''') ||'' ''|| coalesce(NEW.keywords,'''')));
 		ELSIF TG_OP = ''UPDATE'' THEN
 			UPDATE skills_data_idx SET vectors=to_tsvector(coalesce(NEW.title,'''') ||'' ''|| coalesce(NEW.keywords,'''')) WHERE skills_data_id=NEW.skills_data_id;
 		ELSIF TG_OP = ''DELETE'' THEN

-----------------------------------------------------------------------

Summary of changes:
 src/db/20140304-fix_update_vectors_function.sql |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
FusionForge



More information about the Fusionforge-commits mailing list