CUBRID Engine  latest
show_scan.h
Go to the documentation of this file.
1 /*
2  * Copyright 2008 Search Solution Corporation
3  * Copyright 2016 CUBRID Corporation
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  */
18 
19 
20 /*
21  * show_scan.h
22  */
23 #ifndef _SHOW_SCAN_H_
24 #define _SHOW_SCAN_H_
25 
26 #ident "$Id$"
27 
28 #include "dbtype_def.h"
29 #include "thread_compat.hpp"
30 
33 {
34  DB_VALUE **tuples; /* tuples, each tuple is composed by DB_VALUE arrays */
35  int num_cols; /* columns count */
36  int num_used; /* used tuples count */
37  int num_total; /* total allocated tuples count */
38 };
39 
40 extern SHOWSTMT_ARRAY_CONTEXT *showstmt_alloc_array_context (THREAD_ENTRY * thread_p, int num_capacity, int num_cols);
43 
44 extern int thread_start_scan (THREAD_ENTRY * thread_p, int type, DB_VALUE ** arg_values, int arg_cnt, void **ctx);
45 
46 #endif /* _SHOW_SCAN_H_ */
DB_VALUE ** tuples
Definition: show_scan.h:34
void THREAD_ENTRY
int thread_start_scan(THREAD_ENTRY *thread_p, int type, DB_VALUE **arg_values, int arg_cnt, void **ctx)
Definition: show_scan.c:813
void showstmt_free_array_context(THREAD_ENTRY *thread_p, SHOWSTMT_ARRAY_CONTEXT *ctx)
Definition: show_scan.c:373
SHOWSTMT_ARRAY_CONTEXT * showstmt_alloc_array_context(THREAD_ENTRY *thread_p, int num_capacity, int num_cols)
Definition: show_scan.c:336
DB_VALUE * showstmt_alloc_tuple_in_context(THREAD_ENTRY *thread_p, SHOWSTMT_ARRAY_CONTEXT *ctx)
Definition: show_scan.c:402