Cloud DB
Загрузка...
Поиск...
Не найдено
TAM.h
См. документацию.
1
8#ifndef TAM_H
9#define TAM_H
10
11#include "postgres.h"
12
13#include "fmgr.h"
14
15#include "access/tableam.h"
16
17#include "access/heapam.h"
18
19#include "nodes/execnodes.h"
20
21#include "catalog/index.h"
22
23#include "commands/vacuum.h"
24
25#include "utils/builtins.h"
26
27#include "executor/tuptable.h"
28
29#include "utils/lsyscache.h"
30
31#include "logger.h"
32
33#include "callback.h"
34
35#include "tcassconnection.h"
36
37#include <stdlib.h>
38
39#define MAX_ROWS 100
40
44static TableAmRoutine clouddb_methods;
45
52typedef struct TableInfo {
53 char *tableName;
55 char **fieldNames;
59
60TableInfo get_tableInfo(Relation rel);
61
62#endif
struct TableInfo TableInfo
Содержит информацию о Postgresql таблице
Содержит информацию о Postgresql таблице
Definition TAM.h:52
Oid * fieldTypes
Definition TAM.h:56
char ** fieldNames
Definition TAM.h:55
int rowsCount
Definition TAM.h:57
int fieldsCount
Definition TAM.h:54