blob: ab249046013628d6fb1a8e0a1ecc0faa7eefc49a [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/*-------------------------------------------------------------------------
*
* pg_vlabel.h
* record sql execution information
*
*-------------------------------------------------------------------------
*/
#ifndef SRC_INCLUDE_CATALOG_SKYLON_GRAPH_ELABEL_H_
#define SRC_INCLUDE_CATALOG_SKYLON_GRAPH_ELABEL_H_
#include "catalog/genbki.h"
#include "c.h"
/* TIDYCAT_BEGINDEF
CREATE TABLE skylon_graph_elabel
with (camelcase=GraphElabel, shared=true, oid=false, relid=4855, reltype_oid=4875, content=MASTER_ONLY)
(
elabelName name,
schemaName name
);
TIDYCAT_ENDDEF
*/
/* TIDYCAT_BEGIN_CODEGEN
WARNING: DO NOT MODIFY THE FOLLOWING SECTION:
Generated by tidycat.pl version 34
on Fri Feb 26 10:43:15 2016
*/
/*
TidyCat Comments for gp_configuration_history:
Table is shared, so catalog.c:IsSharedRelation is updated.
Table does not have an Oid column.
Table has static type (see pg_types.h).
Table has TOASTable columns, but NO TOAST table.
Table contents are only maintained on MASTER.
Table has weird hack for timestamp column.
*/
/*
* The CATALOG definition has to refer to the type of "time" as
* "timestamptz" (lower case) so that bootstrap mode recognizes it. But
* the C header files define this type as TimestampTz. Since the field is
* potentially-null and therefore cannot be accessed directly from C code,
* there is no particular need for the C struct definition to show the
* field type as TimestampTz --- instead we just make it Datum.
*/
/* ----------------
* pg_graph_vlabel definition. cpp turns this into
* typedef struct FormData_pg_vlabel
* ----------------
*/
#define GraphElabelRelationId 4855
CATALOG(skylon_graph_elabel,4855) BKI_WITHOUT_OIDS
{
NameData schemaname;
NameData graphname;
NameData elabelname;
Oid reloid;
} FormData_skylon_graph_elabel;
/* ----------------
* Form_skylon_graph_elabel corresponds to a pointer to a tuple with
* the format of skylon_graph_elabel relation.
* ----------------
*/
typedef FormData_skylon_graph_elabel *Form_skylon_graph_elabel;
/* ----------------
* compiler constants for pg_database
* ----------------
*/
#define Natts_skylon_graph_elabel 4
#define Anum_skylon_graph_elabel_schemaname 1
#define Anum_skylon_graph_elabel_graphname 2
#define Anum_skylon_graph_elabel_elabelname 3
#define Anum_skylon_graph_elabel_reloid 4
/* TIDYCAT_END_CODEGEN */
extern void InsertGraphElabelEntry(const char* schemaname, const char* graphname, const char* elabelname, Oid reloid);
#endif /* SRC_INCLUDE_CATALOG_SKYLON_GRAPH_ELABEL_H_ */