Commit 73bfcf6b authored by Jan Wieck's avatar Jan Wieck

Changed pg_rewrite attributes ev_qual and ev_action to the new

compressed lztext data type.

Jan
parent 1276aef2
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
#include "postgres.h" #include "postgres.h"
#include "utils/builtins.h"
#include "access/heapam.h" #include "access/heapam.h"
#include "catalog/catname.h" #include "catalog/catname.h"
#include "catalog/indexing.h" #include "catalog/indexing.h"
...@@ -27,7 +28,6 @@ ...@@ -27,7 +28,6 @@
#include "miscadmin.h" #include "miscadmin.h"
#include "rewrite/rewriteRemove.h" #include "rewrite/rewriteRemove.h"
#include "utils/acl.h" #include "utils/acl.h"
#include "utils/builtins.h"
#include "utils/syscache.h" #include "utils/syscache.h"
#include "../backend/parser/parse.h" #include "../backend/parser/parse.h"
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/rewrite/rewriteDefine.c,v 1.39 1999/11/07 23:08:12 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/rewrite/rewriteDefine.c,v 1.40 1999/11/18 13:56:27 wieck Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -15,13 +15,13 @@ ...@@ -15,13 +15,13 @@
#include "postgres.h" #include "postgres.h"
#include "access/heapam.h" #include "access/heapam.h"
#include "utils/builtins.h"
#include "catalog/pg_rewrite.h" #include "catalog/pg_rewrite.h"
#include "lib/stringinfo.h" #include "lib/stringinfo.h"
#include "parser/parse_relation.h" #include "parser/parse_relation.h"
#include "rewrite/rewriteDefine.h" #include "rewrite/rewriteDefine.h"
#include "rewrite/rewriteSupport.h" #include "rewrite/rewriteSupport.h"
#include "tcop/tcopprot.h" #include "tcop/tcopprot.h"
#include "utils/builtins.h"
Oid LastOidProcessed = InvalidOid; Oid LastOidProcessed = InvalidOid;
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/rewrite/rewriteRemove.c,v 1.31 1999/11/07 23:08:13 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/rewrite/rewriteRemove.c,v 1.32 1999/11/18 13:56:27 wieck Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
#include "postgres.h" #include "postgres.h"
#include "utils/builtins.h"
#include "access/heapam.h" #include "access/heapam.h"
#include "catalog/catname.h" #include "catalog/catname.h"
#include "catalog/pg_rewrite.h" #include "catalog/pg_rewrite.h"
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/cache/relcache.c,v 1.78 1999/11/17 23:51:21 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/cache/relcache.c,v 1.79 1999/11/18 13:56:28 wieck Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -36,6 +36,7 @@ ...@@ -36,6 +36,7 @@
#include "postgres.h" #include "postgres.h"
#include "utils/builtins.h"
#include "access/genam.h" #include "access/genam.h"
#include "access/heapam.h" #include "access/heapam.h"
#include "access/istrat.h" #include "access/istrat.h"
...@@ -53,7 +54,6 @@ ...@@ -53,7 +54,6 @@
#include "lib/hasht.h" #include "lib/hasht.h"
#include "miscadmin.h" #include "miscadmin.h"
#include "storage/smgr.h" #include "storage/smgr.h"
#include "utils/builtins.h"
#include "utils/catcache.h" #include "utils/catcache.h"
#include "utils/relcache.h" #include "utils/relcache.h"
#include "utils/temprel.h" #include "utils/temprel.h"
...@@ -679,8 +679,8 @@ RelationBuildRuleLock(Relation relation) ...@@ -679,8 +679,8 @@ RelationBuildRuleLock(Relation relation)
Anum_pg_rewrite_ev_qual, pg_rewrite_tupdesc, Anum_pg_rewrite_ev_qual, pg_rewrite_tupdesc,
&isnull); &isnull);
ruleaction = PointerGetDatum(textout((struct varlena *) DatumGetPointer(ruleaction))); ruleaction = PointerGetDatum(lztextout((lztext *) DatumGetPointer(ruleaction)));
rule_evqual_string = PointerGetDatum(textout((struct varlena *) DatumGetPointer(rule_evqual_string))); rule_evqual_string = PointerGetDatum(lztextout((lztext *) DatumGetPointer(rule_evqual_string)));
rule->actions = (List *) stringToNode(DatumGetPointer(ruleaction)); rule->actions = (List *) stringToNode(DatumGetPointer(ruleaction));
rule->qual = (Node *) stringToNode(DatumGetPointer(rule_evqual_string)); rule->qual = (Node *) stringToNode(DatumGetPointer(rule_evqual_string));
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.39 1999/11/16 04:13:59 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/cache/syscache.c,v 1.40 1999/11/18 13:56:29 wieck Exp $
* *
* NOTES * NOTES
* These routines allow the parser/planner/executor to perform * These routines allow the parser/planner/executor to perform
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
*/ */
#include "postgres.h" #include "postgres.h"
#include "utils/builtins.h"
#include "access/heapam.h" #include "access/heapam.h"
#include "catalog/catname.h" #include "catalog/catname.h"
#include "catalog/pg_aggregate.h" #include "catalog/pg_aggregate.h"
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* $Id: pg_rewrite.h,v 1.7 1999/02/13 23:21:14 momjian Exp $ * $Id: pg_rewrite.h,v 1.8 1999/11/18 13:56:30 wieck Exp $
* *
* NOTES * NOTES
* the genbki.sh script reads this file and generates .bki * the genbki.sh script reads this file and generates .bki
...@@ -37,8 +37,8 @@ CATALOG(pg_rewrite) ...@@ -37,8 +37,8 @@ CATALOG(pg_rewrite)
Oid ev_class; Oid ev_class;
int2 ev_attr; int2 ev_attr;
bool is_instead; bool is_instead;
text ev_qual; /* VARLENA */ lztext ev_qual; /* Compressed text */
text ev_action; /* VARLENA */ lztext ev_action; /* Compressed text */
} FormData_pg_rewrite; } FormData_pg_rewrite;
/* ---------------- /* ----------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment