forked from pgspider/griddb_fdw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deparse.c
2790 lines (2470 loc) · 71.8 KB
/
deparse.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* GridDB Foreign Data Wrapper
*
* Portions Copyright (c) 2021, TOSHIBA CORPORATION
*
* IDENTIFICATION
* deparse.c
*
*/
#include "postgres.h"
#include "griddb_fdw.h"
#include "access/heapam.h"
#include "access/htup_details.h"
#include "access/sysattr.h"
#include "catalog/pg_aggregate.h"
#include "catalog/pg_collation.h"
#include "catalog/pg_namespace.h"
#include "catalog/pg_operator.h"
#include "catalog/pg_proc.h"
#include "catalog/pg_type.h"
#include "commands/defrem.h"
#include "nodes/nodeFuncs.h"
#include "nodes/plannodes.h"
#include "optimizer/clauses.h"
#include "optimizer/prep.h"
#include "optimizer/tlist.h"
#include "parser/parsetree.h"
#include "utils/builtins.h"
#include "utils/datetime.h"
#include "utils/lsyscache.h"
#include "utils/rel.h"
#include "utils/relcache.h"
#include "utils/syscache.h"
#include "utils/typcache.h"
#include "time.h"
/*
* Global context for foreign_expr_walker's search of an expression tree.
*/
typedef struct foreign_glob_cxt
{
PlannerInfo *root; /* global planner state */
RelOptInfo *foreignrel; /* the foreign relation we are planning for */
Relids relids; /* relids of base relations in the underlying
* scan */
bool for_tlist; /* whether evaluation for the expression of
* tlist */
bool is_inner_func; /* exist or not in inner exprs */
} foreign_glob_cxt;
/*
* Local (per-tree-level) context for foreign_expr_walker's search.
* This is concerned with identifying collations used in the expression.
*/
typedef enum
{
FDW_COLLATE_NONE, /* expression is of a noncollatable type */
FDW_COLLATE_SAFE, /* collation derives from a foreign Var */
FDW_COLLATE_UNSAFE /* collation derives from something else */
} FDWCollateState;
typedef struct foreign_loc_cxt
{
Oid collation; /* OID of current collation, if any */
FDWCollateState state; /* state of current collation choice */
bool can_skip_cast; /* outer function can skip
* int2/int4/int8/float4/float8 cast */
bool can_pushdown_stable; /* true if query contains time series
* functions */
bool can_pushdown_volatile; /* true if query contains
* griddb_now(), timestampdiff(),
* timestampadd() */
} foreign_loc_cxt;
/*
* Context for griddb_deparse_expr
*/
typedef struct deparse_expr_cxt
{
PlannerInfo *root; /* global planner state */
RelOptInfo *foreignrel; /* the foreign relation we are planning for */
RelOptInfo *scanrel; /* the underlying scan relation. Same as
* foreignrel, when that represents a join or
* a base relation. */
StringInfo buf; /* output buffer to append to */
List **params_list; /* exprs that will become remote Params */
bool can_skip_cast; /* outer function can skip
* int2/int4/int8/float4/float8 cast */
GridDBAggref *aggref;
} deparse_expr_cxt;
/*
* Struct to pull out function
*/
typedef struct pull_func_clause_context
{
List *funclist;
} pull_func_clause_context;
/*
* Functions to construct string representation of a node tree.
*/
static void griddb_deparse_expr(Expr *expr, deparse_expr_cxt *context);
static void griddb_deparse_var(Var *node, deparse_expr_cxt *context);
static void griddb_deparse_const(Const *node, deparse_expr_cxt *context);
static void griddb_deparse_func_expr(FuncExpr *node, deparse_expr_cxt *context);
static void griddb_deparse_op_expr(OpExpr *node, deparse_expr_cxt *context);
static void griddb_deparse_operator_name(StringInfo buf, Form_pg_operator opform);
static void griddb_deparse_distinct_expr(DistinctExpr *node, deparse_expr_cxt *context);
static void griddb_deparse_scalar_array_op_expr(ScalarArrayOpExpr *node,
deparse_expr_cxt *context);
static void griddb_deparse_relabel_type(RelabelType *node, deparse_expr_cxt *context);
static void griddb_deparse_bool_expr(BoolExpr *node, deparse_expr_cxt *context);
static void griddb_deparse_null_test(NullTest *node, deparse_expr_cxt *context);
static void griddb_append_limit_clause(deparse_expr_cxt *context);
static void griddb_deparse_row_expr(RowExpr *node, deparse_expr_cxt *context);
static void griddb_deparse_field_select_expr(FieldSelect *node, deparse_expr_cxt *context);
static void griddb_deparse_relation(StringInfo buf, Relation rel);
static void griddb_deparse_target_list(StringInfo buf, PlannerInfo *root, Index rtindex, Relation rel,
Bitmapset *attrs_used, List **retrieved_attrs);
static void griddb_deparse_column_ref(StringInfo buf, int varno, int varattno,
deparse_expr_cxt *context);
static void griddb_deparse_aggref(Aggref *node, deparse_expr_cxt *context);
static void griddb_append_order_by_clause(List *pathkeys, deparse_expr_cxt *context);
static void griddb_append_where_clause(List *exprs, deparse_expr_cxt *context);
static bool griddb_contain_functions_walker(Node *node, void *context);
static void griddb_append_agg_order_by(List *orderList, List *targetList,
deparse_expr_cxt *context);
static Node *griddb_deparse_sort_group_clause(Index ref, List *tlist, bool force_colno,
deparse_expr_cxt *context);
static void griddb_append_function_name(Oid funcid, deparse_expr_cxt *context);
static bool exist_in_function_list(char *funcname, const char **funclist);
/* List of unique function of GridDB */
static const char *GridDBUniqueFunction[] = {
"to_timestamp_ms",
"to_epoch_ms",
"array_length",
"element",
"griddb_timestamp",
"timestampadd",
"timestampdiff",
"time_next",
"time_next_only",
"time_prev",
"time_prev_only",
"time_interpolated",
"time_sampling",
"max_rows",
"min_rows",
"griddb_now",
NULL};
/* List of common function of GridDB and PostgreSQL */
static const char *GridDBSupportedBuiltinFunction[] = {
"char_length",
"concat",
"lower",
"upper",
"substr",
"round",
"ceiling",
"ceil",
"floor",
NULL};
/*
* CastFunction
* List of PostgreSQL cast functions, these functions can be skip cast.
*/
static const char *CastFunction[] = {
"float4",
"float8",
"int2",
"int4",
"int8",
NULL};
/*
* Deparse given targetlist and append it to context->buf.
*
* tlist is list of TargetEntry's which in turn contain Var nodes.
*
* retrieved_attrs is the list of continuously increasing integers starting
* from 1. It has same number of entries as tlist.
*
* This is used for both SELECT and RETURNING targetlists; the is_returning
* parameter is true only for a RETURNING targetlist.
*/
static void
griddb_deparse_explicit_targetList(List *tlist,
bool is_returning,
List **retrieved_attrs,
deparse_expr_cxt *context)
{
ListCell *lc;
StringInfo buf = context->buf;
int i = 0;
*retrieved_attrs = NIL;
foreach(lc, tlist)
{
TargetEntry *tle = lfirst_node(TargetEntry, lc);
if (i > 0)
appendStringInfoString(buf, ", ");
else if (is_returning)
appendStringInfoString(buf, " RETURNING ");
griddb_deparse_expr((Expr *) tle->expr, context);
*retrieved_attrs = lappend_int(*retrieved_attrs, i + 1);
i++;
}
if (i == 0 && !is_returning)
appendStringInfoString(buf, "NULL");
}
/*
* Append remote name of specified foreign table to buf.
* Use value of table_name FDW option (if any) instead of relation's name.
* Similarly, schema_name FDW option overrides schema name.
*/
static void
griddb_deparse_relation(StringInfo buf, Relation rel)
{
ForeignTable *table;
const char *relname = NULL;
ListCell *lc = NULL;
/* obtain additional catalog information. */
table = GetForeignTable(RelationGetRelid(rel));
/*
* Use value of FDW options if any, instead of the name of object itself.
*/
foreach(lc, table->options)
{
DefElem *def = (DefElem *) lfirst(lc);
if (strcmp(def->defname, OPTION_TABLE) == 0)
relname = defGetString(def);
}
if (relname == NULL)
relname = RelationGetRelationName(rel);
/* For GridDB, name space is not used. */
appendStringInfo(buf, "%s", quote_identifier(relname));
}
/*
* Deparse SELECT statement for given relation into buf.
*
* tlist contains the list of desired columns to be fetched from foreign server.
* For a base relation fpinfo->attrs_used is used to construct SELECT clause,
* hence the tlist is ignored for a base relation.
*
* remote_conds is the list of conditions to be deparsed as WHERE clause.
*
* If params_list is not NULL, it receives a list of Params and other-relation
* Vars used in the clauses; these values must be transmitted to the remote
* server as parameter values.
*
* If params_list is NULL, we're generating the query for EXPLAIN purposes,
* so Params and other-relation Vars should be replaced by dummy values.
*
* pathkeys is the list of pathkeys to order the result by.
*
* List of columns selected is returned in retrieved_attrs.
*/
void
griddb_deparse_select(StringInfo buf,
PlannerInfo *root,
RelOptInfo *baserel,
List *remote_conds,
List *pathkeys,
List **retrieved_attrs,
List **params_list,
List *tlist,
bool has_limit)
{
RangeTblEntry *rte;
Relation rel;
GriddbFdwRelationInfo *fpinfo = (GriddbFdwRelationInfo *) baserel->fdw_private;
deparse_expr_cxt context;
GridDBAggref *aggref;
List *quals;
/* Fill portions of context common to join and base relation */
context.buf = buf;
context.root = root;
context.foreignrel = baserel;
context.params_list = params_list;
context.scanrel = IS_UPPER_REL(baserel) ? fpinfo->outerrel : baserel;
aggref = palloc0(sizeof(GridDBAggref));
aggref->columnname = makeStringInfo();
aggref->aggname = makeStringInfo();
context.aggref = aggref;
context.can_skip_cast = false;
rte = planner_rt_fetch(context.scanrel->relid, root);
/*
* Core code already has some lock on each rel being planned, so we can
* use NoLock here.
*/
rel = table_open(rte->relid, NoLock);
appendStringInfoString(buf, "SELECT ");
if (IS_UPPER_REL(baserel) || fpinfo->is_tlist_func_pushdown == true)
{
griddb_deparse_explicit_targetList(tlist, false, retrieved_attrs, &context);
fpinfo->aggref = context.aggref;
}
else
{
griddb_deparse_target_list(buf, root, baserel->relid, rel,
fpinfo->attrs_used, retrieved_attrs);
}
/*
* Construct FROM clause
*/
appendStringInfoString(buf, " FROM ");
griddb_deparse_relation(buf, rel);
/*
* For upper relations, the WHERE clause is built from the remote
* conditions of the underlying scan relation; otherwise, we can use the
* supplied list of remote conditions directly.
*/
if (IS_UPPER_REL(baserel))
{
GriddbFdwRelationInfo *ofpinfo;
ofpinfo = (GriddbFdwRelationInfo *) fpinfo->outerrel->fdw_private;
quals = ofpinfo->remote_conds;
}
else
quals = remote_conds;
/*
* Construct WHERE clause
*/
if (quals)
griddb_append_where_clause(quals, &context);
/* Add ORDER BY clause if we found any useful pathkeys */
if (pathkeys)
griddb_append_order_by_clause(pathkeys, &context);
/* Add LIMIT clause if necessary */
if (has_limit)
griddb_append_limit_clause(&context);
table_close(rel, NoLock);
}
/*
* Emit a target list that retrieves the columns specified in attrs_used.
* This is used for SELECT targetlists.
*/
static void
griddb_deparse_target_list(StringInfo buf,
PlannerInfo *root,
Index rtindex,
Relation rel,
Bitmapset *attrs_used,
List **retrieved_attrs)
{
TupleDesc tupdesc = RelationGetDescr(rel);
bool have_wholerow;
int i;
/* If there's a whole-row reference, we'll need all the columns. */
have_wholerow = bms_is_member(0 - FirstLowInvalidHeapAttributeNumber,
attrs_used);
*retrieved_attrs = NIL;
for (i = 1; i <= tupdesc->natts; i++)
{
Form_pg_attribute attr = TupleDescAttr(tupdesc, i - 1);
/* Ignore dropped attributes. */
if (attr->attisdropped)
continue;
if (have_wholerow ||
bms_is_member(i - FirstLowInvalidHeapAttributeNumber,
attrs_used))
{
*retrieved_attrs = lappend_int(*retrieved_attrs, i);
}
}
appendStringInfoString(buf, " * ");
}
/*
* Deparse conditions from the provided list and append them to buf.
*
* The conditions in the list are assumed to be ANDed. This function is used to
* deparse WHERE clauses.
*/
static void
griddb_append_where_clause(List *exprs, deparse_expr_cxt *context)
{
ListCell *lc;
bool is_first = true;
StringInfo buf = context->buf;
foreach(lc, exprs)
{
RestrictInfo *ri = (RestrictInfo *) lfirst(lc);
/* Connect expressions with "AND" and parenthesize each condition. */
if (is_first)
appendStringInfoString(buf, " WHERE ");
else
appendStringInfoString(buf, " AND ");
appendStringInfoChar(buf, '(');
griddb_deparse_expr(ri->clause, context);
appendStringInfoChar(buf, ')');
is_first = false;
}
}
/*
* Construct name to use for given column, and emit it into buf.
* If it has a column_name FDW option, use that instead of attribute name.
*/
static void
griddb_deparse_column_ref(StringInfo buf, int varno, int varattno, deparse_expr_cxt *context)
{
RangeTblEntry *rte;
char *colname = NULL;
List *options;
ListCell *lc;
PlannerInfo *root = context->root;
/* varno must not be any of OUTER_VAR, INNER_VAR and INDEX_VAR. */
Assert(!IS_SPECIAL_VARNO(varno));
/* Get RangeTblEntry from array in PlannerInfo. */
rte = planner_rt_fetch(varno, root);
/*
* If it's a column of a foreign table, and it has the column_name FDW
* option, use that value.
*/
options = GetForeignColumnOptions(rte->relid, varattno);
foreach(lc, options)
{
DefElem *def = (DefElem *) lfirst(lc);
if (strcmp(def->defname, "column_name") == 0)
{
colname = defGetString(def);
break;
}
}
/*
* If it's a column of a regular table or it doesn't have column_name FDW
* option, use attribute name.
*/
if (colname == NULL)
colname = get_attname(rte->relid, varattno
#if (PG_VERSION_NUM >= 110000)
,false
#endif
);
appendStringInfoString(buf, quote_identifier(colname));
if (context->aggref)
{
if (strcmp(context->aggref->columnname->data, "") == 0)
appendStringInfoString(context->aggref->columnname, colname);
}
}
/*
* Append a SQL string literal representing "val" to buf.
*/
static void
griddb_deparse_string_literal(StringInfo buf, const char *val)
{
const char *valptr;
appendStringInfoChar(buf, '\'');
for (valptr = val; *valptr; valptr++)
{
char ch = *valptr;
if (SQL_STR_DOUBLE(ch, true))
appendStringInfoChar(buf, ch);
appendStringInfoChar(buf, ch);
}
appendStringInfoChar(buf, '\'');
}
/*
* Deparse given expression into context->buf.
*
* This function must support all the same node types that foreign_expr_walker
* accepts.
*
* Note: unlike ruleutils.c, we just use a simple hard-wired parenthesization
* scheme: anything more complex than a Var, Const, function call or cast
* should be self-parenthesized.
*/
static void
griddb_deparse_expr(Expr *node, deparse_expr_cxt *context)
{
bool outer_can_skip_cast = context->can_skip_cast;
if (node == NULL)
return;
switch (nodeTag(node))
{
case T_Var:
griddb_deparse_var((Var *) node, context);
break;
case T_Const:
griddb_deparse_const((Const *) node, context);
break;
case T_Param:
/* Does not reach here because foreign_expr_walker returns false. */
elog(ERROR, "Parameter is unsupported");
Assert(false);
break;
#if PG_VERSION_NUM < 120000
case T_ArrayRef:
#else
case T_SubscriptingRef:
#endif
/* Does not reach here because foreign_expr_walker returns false. */
elog(ERROR, "Array is unsupported");
Assert(false);
break;
case T_FuncExpr:
context->can_skip_cast = outer_can_skip_cast;
griddb_deparse_func_expr((FuncExpr *) node, context);
break;
case T_OpExpr:
griddb_deparse_op_expr((OpExpr *) node, context);
break;
case T_DistinctExpr:
griddb_deparse_distinct_expr((DistinctExpr *) node, context);
break;
case T_ScalarArrayOpExpr:
griddb_deparse_scalar_array_op_expr((ScalarArrayOpExpr *) node, context);
break;
case T_RelabelType:
griddb_deparse_relabel_type((RelabelType *) node, context);
break;
case T_BoolExpr:
griddb_deparse_bool_expr((BoolExpr *) node, context);
break;
case T_NullTest:
griddb_deparse_null_test((NullTest *) node, context);
break;
case T_ArrayExpr:
/* Does not reach here because foreign_expr_walker returns false. */
elog(ERROR, "ARRAY[...] is not supported");
Assert(false);
break;
case T_RowExpr:
griddb_deparse_row_expr((RowExpr *) node, context);
break;
case T_FieldSelect:
griddb_deparse_field_select_expr((FieldSelect *) node, context);
break;
case T_Aggref:
griddb_deparse_aggref((Aggref *) node, context);
break;
default:
elog(ERROR, "unsupported expression type for deparse: %d",
(int) nodeTag(node));
break;
}
}
/*
* Deparse given Var node into context->buf.
*
* If the Var belongs to the foreign relation, just print its remote name.
* Otherwise, it's effectively a Param (and will in fact be a Param at
* run time). Handle it the same way we handle plain Params --- it is
* unsupported on GridDB.
*/
static void
griddb_deparse_var(Var *node, deparse_expr_cxt *context)
{
StringInfo buf = context->buf;
Relids relids = context->scanrel->relids;
if (bms_is_member(node->varno, relids) && node->varlevelsup == 0)
{
/* Var belongs to foreign table */
griddb_deparse_column_ref(buf, node->varno, node->varattno, context);
}
else
{
/* Does not reach here. */
elog(ERROR, "Parameter is unsupported");
Assert(false);
}
}
/*
* Deparse given constant value into context->buf.
*
* This function has to be kept in sync with ruleutils.c's get_const_expr.
*/
static void
griddb_deparse_const(Const *node, deparse_expr_cxt *context)
{
StringInfo buf = context->buf;
Oid typoutput;
bool typIsVarlena;
char *extval;
if (node->constisnull)
{
appendStringInfoString(buf, "NULL");
return;
}
getTypeOutputInfo(node->consttype,
&typoutput, &typIsVarlena);
switch (node->consttype)
{
case INT2OID:
case INT4OID:
case INT8OID:
case OIDOID:
case FLOAT4OID:
case FLOAT8OID:
case NUMERICOID:
{
extval = OidOutputFunctionCall(typoutput, node->constvalue);
/*
* No need to quote unless it's a special value such as 'NaN'.
* See comments in get_const_expr().
*/
if (strspn(extval, "0123456789+-eE.") == strlen(extval))
{
if (extval[0] == '+' || extval[0] == '-')
appendStringInfo(buf, "(%s)", extval);
else
appendStringInfoString(buf, extval);
}
else
appendStringInfo(buf, "'%s'", extval);
}
break;
case BITOID:
case VARBITOID:
/* Does not reach here. */
elog(ERROR, "VARBITOID/BITOID is unsupported");
Assert(false);
break;
case BOOLOID:
extval = OidOutputFunctionCall(typoutput, node->constvalue);
if (strcmp(extval, "t") == 0)
appendStringInfoString(buf, "true");
else
appendStringInfoString(buf, "false");
break;
case INTERVALOID:
/* Does not reach here */
elog(ERROR, "INTERVALOID is unsupported");
Assert(false);
break;
case TIMESTAMPOID:
{
char timestamp[MAXDATELEN + 1];
griddb_convert_pg2gs_timestamp_string(node->constvalue, timestamp);
appendStringInfoString(buf, "TIMESTAMP(");
griddb_deparse_string_literal(buf, timestamp);
appendStringInfoString(buf, ")");
break;
}
default:
extval = OidOutputFunctionCall(typoutput, node->constvalue);
griddb_deparse_string_literal(buf, extval);
break;
}
}
/*
* This possible that name of function in PostgreSQL and
* GridDB differ, so return the GridDB equelent function name
*/
static char *
griddb_replace_function(char *in)
{
if (strcmp(in, "ceil") == 0)
return "ceiling";
else if (strcmp(in, "griddb_timestamp") == 0)
/* Change name to function TIMESTAMP of GridDB */
return "timestamp";
else if (strcmp(in, "substr") == 0)
/* Change name to function SUBSTR of GridDB */
return "substring";
else if (strcmp(in, "griddb_now") == 0)
/* Change name to function now() of GridDB */
return "now";
/* Explicit datatype conversion is unnecessary */
if (exist_in_function_list(in, CastFunction))
return "";
return in;
}
/*
* Deparse a function call.
*/
static void
griddb_deparse_func_expr(FuncExpr *node, deparse_expr_cxt *context)
{
StringInfo buf = context->buf;
char *proname;
bool use_variadic;
bool first;
ListCell *arg;
/*
* Normal function: display as proname(args).
*/
proname = get_func_name(node->funcid);
/* check NULL for proname */
if (proname == NULL)
elog(ERROR, "cache lookup failed for function %u", node->funcid);
/* Check if need to print VARIADIC (cf. ruleutils.c) */
use_variadic = node->funcvariadic;
/* remove cast function if parent function is can handle without cast */
if (context->can_skip_cast == true &&
exist_in_function_list(proname, CastFunction))
{
arg = list_head(node->args);
context->can_skip_cast = false;
griddb_deparse_expr((Expr *) lfirst(arg), context);
return;
}
/* Translate PostgreSQL function into GridDB function */
proname = griddb_replace_function(proname);
/* Deparse the function name ... */
if (strcmp(proname, "time_next") == 0 ||
strcmp(proname, "time_next_only") == 0 ||
strcmp(proname, "time_prev") == 0 ||
strcmp(proname, "time_prev_only") == 0 ||
(strcmp(proname, "time_sampling") == 0 && list_length(node->args) == 4))
/* Append * as input parameter */
appendStringInfo(buf, "%s(*, ", proname);
else
appendStringInfo(buf, "%s(", proname);
/* ... and all the arguments */
first = true;
foreach(arg, node->args)
{
if (!first)
appendStringInfoString(buf, ", ");
#if (PG_VERSION_NUM >= 130000)
if (use_variadic && lnext(node->args, arg) == NULL)
#else
if (use_variadic && lnext(arg) == NULL)
#endif
elog(ERROR, "VARIADIC is not supported");
griddb_deparse_expr((Expr *) lfirst(arg), context);
first = false;
}
appendStringInfoChar(buf, ')');
}
/*
* Deparse given operator expression. To avoid problems around
* priority of operations, we always parenthesize the arguments.
*/
static void
griddb_deparse_op_expr(OpExpr *node, deparse_expr_cxt *context)
{
StringInfo buf = context->buf;
HeapTuple tuple;
Form_pg_operator form;
char oprkind;
/* Retrieve information about the operator from system catalog. */
tuple = SearchSysCache1(OPEROID, ObjectIdGetDatum(node->opno));
if (!HeapTupleIsValid(tuple))
elog(ERROR, "cache lookup failed for operator %u", node->opno);
form = (Form_pg_operator) GETSTRUCT(tuple);
oprkind = form->oprkind;
/* Sanity check. */
Assert((oprkind == 'l' && list_length(node->args) == 1) ||
(oprkind == 'b' && list_length(node->args) == 2));
/* Always parenthesize the expression. */
appendStringInfoChar(buf, '(');
/* Deparse left operand. */
if (oprkind == 'b')
{
griddb_deparse_expr(linitial(node->args), context);
appendStringInfoChar(buf, ' ');
}
/* Deparse operator name. */
griddb_deparse_operator_name(buf, form);
/* Deparse right operand. */
appendStringInfoChar(buf, ' ');
griddb_deparse_expr(llast(node->args), context);
appendStringInfoChar(buf, ')');
ReleaseSysCache(tuple);
}
/*
* Print the name of an operator.
*/
static void
griddb_deparse_operator_name(StringInfo buf, Form_pg_operator opform)
{
char *cur_opname;
/* opname is not a SQL identifier, so we should not quote it. */
cur_opname = NameStr(opform->oprname);
/* Print schema name only if it's not pg_catalog */
if (opform->oprnamespace != PG_CATALOG_NAMESPACE)
{
elog(ERROR, "OPERATOR is not supported");
}
else
{
if (strcmp(cur_opname, "~~") == 0)
{
appendStringInfoString(buf, "LIKE");
}
else if (strcmp(cur_opname, "!~~") == 0)
{
appendStringInfoString(buf, "NOT LIKE");
}
else if (strcmp(cur_opname, "~~*") == 0 ||
strcmp(cur_opname, "!~~*") == 0 ||
strcmp(cur_opname, "~") == 0 ||
strcmp(cur_opname, "!~") == 0 ||
strcmp(cur_opname, "~*") == 0 ||
strcmp(cur_opname, "!~*") == 0)
{
elog(ERROR, "OPERATOR is not supported");
}
else
{
appendStringInfoString(buf, cur_opname);
}
}
}
/*
* Deparse IS DISTINCT FROM.
* "expr IS DISTINCT FROM expr" is converted to "expr <> expr".
*/
static void
griddb_deparse_distinct_expr(DistinctExpr *node, deparse_expr_cxt *context)
{
StringInfo buf = context->buf;
Assert(list_length(node->args) == 2);
appendStringInfoChar(buf, '(');
griddb_deparse_expr((Expr *) linitial(node->args), context);
appendStringInfoString(buf, " <> ");
griddb_deparse_expr((Expr *) lsecond(node->args), context);
appendStringInfoChar(buf, ')');
}
/*
* Deparse if array of constants
* Conditions concatenated by OR/AND will be deparsed, for examples:
* c1 = ANY(ARRAY(1, 2, 3)) => c1 == 1 OR c1 == 2 OR c1 == 3
* c1 = ALL(ARRAY(1, 2, 3)) => c1 <> 1 AND c1 <> 2 AND c1 <> 3
*/
static void
griddb_deparse_const_array(ScalarArrayOpExpr *node, deparse_expr_cxt *context, StringInfo buf, Const *c, const char *extval, bool isstr)
{
const char *valptr;
int i = 0;
bool deparseLeft = true;
Expr *arg1;
char *opname;
bool inString = false;
bool isEscape = false;
arg1 = linitial(node->args);
opname = get_opname(node->opno);
for (valptr = extval; *valptr; valptr++, i++)
{
char ch = *valptr;
/* Deparse left operand. */
if (deparseLeft)
{
/* No need deparse bool column */
if (c->consttype == BOOLARRAYOID)
{
deparseLeft = false;
continue;
}
/* Deparse left operand */
griddb_deparse_expr(arg1, context);
/* Append operator */
if (strcmp(opname, "=") == 0)
appendStringInfo(buf, " == ");
else
appendStringInfo(buf, " %s ", opname);
if (isstr)
appendStringInfoChar(buf, '\'');
deparseLeft = false;
}
/*
* Remove '{', '}' character from the string. Because this syntax is
* not recognize by the remote GridDB server.
*/
if ((ch == '{' && i == 0) || (ch == '}' && (i == (strlen(extval) - 1))))
continue;
/* Remove '\"' and process the next character. */
if (ch == '\"' && !isEscape)
{
inString = !inString;
continue;
}
/* Add escape character '\'' for '\'' */
if (ch == '\'')
appendStringInfoChar(buf, '\'');
/* Remove character '\\' and process the next character. */
if (ch == '\\' && !isEscape)
{
isEscape = true;
continue;
}
isEscape = false;
if (ch == ',' && !inString)
{
if (isstr)
appendStringInfoChar(buf, '\'');
if (node->useOr)
appendStringInfo(buf, " OR ");
else
appendStringInfo(buf, " AND ");
/* No need deparse bool column */
if (c->consttype == BOOLARRAYOID)
{
deparseLeft = false;
continue;
}
deparseLeft = true;
continue;
}
/*
* When compare with timestamp column, need to convert and cast to
* TIMESTAMP