1
2
3
4 package com.pingcap.tidb.tipb;
5
6
7
8
9 public enum ScalarFuncSig
10 implements com.google.protobuf.ProtocolMessageEnum {
11
12
13
14 Unspecified(0),
15
16
17
18
19
20
21
22 CastIntAsInt(1),
23
24
25
26 CastIntAsReal(2),
27
28
29
30 CastIntAsString(3),
31
32
33
34 CastIntAsDecimal(4),
35
36
37
38 CastIntAsTime(5),
39
40
41
42 CastIntAsDuration(6),
43
44
45
46 CastIntAsJson(7),
47
48
49
50 CastRealAsInt(10),
51
52
53
54 CastRealAsReal(11),
55
56
57
58 CastRealAsString(12),
59
60
61
62 CastRealAsDecimal(13),
63
64
65
66 CastRealAsTime(14),
67
68
69
70 CastRealAsDuration(15),
71
72
73
74 CastRealAsJson(16),
75
76
77
78 CastDecimalAsInt(20),
79
80
81
82 CastDecimalAsReal(21),
83
84
85
86 CastDecimalAsString(22),
87
88
89
90 CastDecimalAsDecimal(23),
91
92
93
94 CastDecimalAsTime(24),
95
96
97
98 CastDecimalAsDuration(25),
99
100
101
102 CastDecimalAsJson(26),
103
104
105
106 CastStringAsInt(30),
107
108
109
110 CastStringAsReal(31),
111
112
113
114 CastStringAsString(32),
115
116
117
118 CastStringAsDecimal(33),
119
120
121
122 CastStringAsTime(34),
123
124
125
126 CastStringAsDuration(35),
127
128
129
130 CastStringAsJson(36),
131
132
133
134 CastTimeAsInt(40),
135
136
137
138 CastTimeAsReal(41),
139
140
141
142 CastTimeAsString(42),
143
144
145
146 CastTimeAsDecimal(43),
147
148
149
150 CastTimeAsTime(44),
151
152
153
154 CastTimeAsDuration(45),
155
156
157
158 CastTimeAsJson(46),
159
160
161
162 CastDurationAsInt(50),
163
164
165
166 CastDurationAsReal(51),
167
168
169
170 CastDurationAsString(52),
171
172
173
174 CastDurationAsDecimal(53),
175
176
177
178 CastDurationAsTime(54),
179
180
181
182 CastDurationAsDuration(55),
183
184
185
186 CastDurationAsJson(56),
187
188
189
190 CastJsonAsInt(60),
191
192
193
194 CastJsonAsReal(61),
195
196
197
198 CastJsonAsString(62),
199
200
201
202 CastJsonAsDecimal(63),
203
204
205
206 CastJsonAsTime(64),
207
208
209
210 CastJsonAsDuration(65),
211
212
213
214 CastJsonAsJson(66),
215
216
217
218
219
220
221
222 CoalesceInt(4201),
223
224
225
226 CoalesceReal(4202),
227
228
229
230 CoalesceDecimal(4203),
231
232
233
234 CoalesceString(4204),
235
236
237
238 CoalesceTime(4205),
239
240
241
242 CoalesceDuration(4206),
243
244
245
246
247
248
249
250 CoalesceJson(4207),
251
252
253
254 LTInt(100),
255
256
257
258 LTReal(101),
259
260
261
262 LTDecimal(102),
263
264
265
266 LTString(103),
267
268
269
270 LTTime(104),
271
272
273
274 LTDuration(105),
275
276
277
278 LTJson(106),
279
280
281
282 LEInt(110),
283
284
285
286 LEReal(111),
287
288
289
290 LEDecimal(112),
291
292
293
294 LEString(113),
295
296
297
298 LETime(114),
299
300
301
302 LEDuration(115),
303
304
305
306 LEJson(116),
307
308
309
310 GTInt(120),
311
312
313
314 GTReal(121),
315
316
317
318 GTDecimal(122),
319
320
321
322 GTString(123),
323
324
325
326 GTTime(124),
327
328
329
330 GTDuration(125),
331
332
333
334 GTJson(126),
335
336
337
338 GreatestInt(4215),
339
340
341
342 GreatestReal(4216),
343
344
345
346 GreatestDecimal(4217),
347
348
349
350 GreatestString(4218),
351
352
353
354 GreatestTime(4219),
355
356
357
358 LeastInt(4220),
359
360
361
362 LeastReal(4221),
363
364
365
366 LeastDecimal(4222),
367
368
369
370 LeastString(4223),
371
372
373
374 LeastTime(4224),
375
376
377
378 IntervalInt(4225),
379
380
381
382 IntervalReal(4226),
383
384
385
386 GEInt(130),
387
388
389
390 GEReal(131),
391
392
393
394 GEDecimal(132),
395
396
397
398 GEString(133),
399
400
401
402 GETime(134),
403
404
405
406 GEDuration(135),
407
408
409
410 GEJson(136),
411
412
413
414 EQInt(140),
415
416
417
418 EQReal(141),
419
420
421
422 EQDecimal(142),
423
424
425
426 EQString(143),
427
428
429
430 EQTime(144),
431
432
433
434 EQDuration(145),
435
436
437
438 EQJson(146),
439
440
441
442 NEInt(150),
443
444
445
446 NEReal(151),
447
448
449
450 NEDecimal(152),
451
452
453
454 NEString(153),
455
456
457
458 NETime(154),
459
460
461
462 NEDuration(155),
463
464
465
466 NEJson(156),
467
468
469
470 NullEQInt(160),
471
472
473
474 NullEQReal(161),
475
476
477
478 NullEQDecimal(162),
479
480
481
482 NullEQString(163),
483
484
485
486 NullEQTime(164),
487
488
489
490 NullEQDuration(165),
491
492
493
494 NullEQJson(166),
495
496
497
498
499
500
501
502 PlusReal(200),
503
504
505
506 PlusDecimal(201),
507
508
509
510 PlusInt(203),
511
512
513
514 MinusReal(204),
515
516
517
518 MinusDecimal(205),
519
520
521
522 MinusInt(207),
523
524
525
526 MultiplyReal(208),
527
528
529
530 MultiplyDecimal(209),
531
532
533
534 MultiplyInt(210),
535
536
537
538 DivideReal(211),
539
540
541
542 DivideDecimal(212),
543
544
545
546 IntDivideInt(213),
547
548
549
550 IntDivideDecimal(214),
551
552
553
554 ModReal(215),
555
556
557
558 ModDecimal(216),
559
560
561
562 ModInt(217),
563
564
565
566 MultiplyIntUnsigned(218),
567
568
569
570 PlusIntUnsignedUnsigned(219),
571
572
573
574 PlusIntUnsignedSigned(220),
575
576
577
578 PlusIntSignedUnsigned(221),
579
580
581
582 PlusIntSignedSigned(222),
583
584
585
586
587
588
589
590 AbsInt(2101),
591
592
593
594 AbsUInt(2102),
595
596
597
598 AbsReal(2103),
599
600
601
602 AbsDecimal(2104),
603
604
605
606 CeilIntToDec(2105),
607
608
609
610 CeilIntToInt(2106),
611
612
613
614 CeilDecToInt(2107),
615
616
617
618 CeilDecToDec(2108),
619
620
621
622 CeilReal(2109),
623
624
625
626 FloorIntToDec(2110),
627
628
629
630 FloorIntToInt(2111),
631
632
633
634 FloorDecToInt(2112),
635
636
637
638 FloorDecToDec(2113),
639
640
641
642 FloorReal(2114),
643
644
645
646 RoundReal(2121),
647
648
649
650 RoundInt(2122),
651
652
653
654 RoundDec(2123),
655
656
657
658 RoundWithFracReal(2124),
659
660
661
662 RoundWithFracInt(2125),
663
664
665
666 RoundWithFracDec(2126),
667
668
669
670 Log1Arg(2131),
671
672
673
674 Log2Args(2132),
675
676
677
678 Log2(2133),
679
680
681
682 Log10(2134),
683
684
685
686 Rand(2135),
687
688
689
690 RandWithSeedFirstGen(2136),
691
692
693
694 Pow(2137),
695
696
697
698 Conv(2138),
699
700
701
702 CRC32(2139),
703
704
705
706 Sign(2140),
707
708
709
710 Sqrt(2141),
711
712
713
714 Acos(2142),
715
716
717
718 Asin(2143),
719
720
721
722 Atan1Arg(2144),
723
724
725
726 Atan2Args(2145),
727
728
729
730 Cos(2146),
731
732
733
734 Cot(2147),
735
736
737
738 Degrees(2148),
739
740
741
742 Exp(2149),
743
744
745
746 PI(2150),
747
748
749
750 Radians(2151),
751
752
753
754 Sin(2152),
755
756
757
758 Tan(2153),
759
760
761
762 TruncateInt(2154),
763
764
765
766 TruncateReal(2155),
767
768
769
770 TruncateDecimal(2156),
771
772
773
774 TruncateUint(2157),
775
776
777
778
779
780
781
782 LogicalAnd(3101),
783
784
785
786 LogicalOr(3102),
787
788
789
790 LogicalXor(3103),
791
792
793
794 UnaryNotInt(3104),
795
796
797
798 UnaryNotDecimal(3105),
799
800
801
802 UnaryNotReal(3106),
803
804
805
806 UnaryMinusInt(3108),
807
808
809
810 UnaryMinusReal(3109),
811
812
813
814 UnaryMinusDecimal(3110),
815
816
817
818 DecimalIsNull(3111),
819
820
821
822 DurationIsNull(3112),
823
824
825
826 RealIsNull(3113),
827
828
829
830 StringIsNull(3114),
831
832
833
834 TimeIsNull(3115),
835
836
837
838 IntIsNull(3116),
839
840
841
842
843
844
845
846 JsonIsNull(3117),
847
848
849
850 BitAndSig(3118),
851
852
853
854 BitOrSig(3119),
855
856
857
858 BitXorSig(3120),
859
860
861
862 BitNegSig(3121),
863
864
865
866 IntIsTrue(3122),
867
868
869
870 RealIsTrue(3123),
871
872
873
874 DecimalIsTrue(3124),
875
876
877
878 IntIsFalse(3125),
879
880
881
882 RealIsFalse(3126),
883
884
885
886 DecimalIsFalse(3127),
887
888
889
890 LeftShift(3129),
891
892
893
894 RightShift(3130),
895
896
897
898
899
900
901
902 BitCount(3128),
903
904
905
906 GetParamString(3131),
907
908
909
910 GetVar(3132),
911
912
913
914 RowSig(3133),
915
916
917
918 SetVar(3134),
919
920
921
922 ValuesDecimal(3135),
923
924
925
926 ValuesDuration(3136),
927
928
929
930 ValuesInt(3137),
931
932
933
934 ValuesJSON(3138),
935
936
937
938 ValuesReal(3139),
939
940
941
942 ValuesString(3140),
943
944
945
946 ValuesTime(3141),
947
948
949
950 InInt(4001),
951
952
953
954 InReal(4002),
955
956
957
958 InDecimal(4003),
959
960
961
962 InString(4004),
963
964
965
966 InTime(4005),
967
968
969
970 InDuration(4006),
971
972
973
974 InJson(4007),
975
976
977
978
979
980
981
982 IfNullInt(4101),
983
984
985
986 IfNullReal(4102),
987
988
989
990 IfNullDecimal(4103),
991
992
993
994 IfNullString(4104),
995
996
997
998 IfNullTime(4105),
999
1000
1001
1002 IfNullDuration(4106),
1003
1004
1005
1006 IfInt(4107),
1007
1008
1009
1010 IfReal(4108),
1011
1012
1013
1014 IfDecimal(4109),
1015
1016
1017
1018 IfString(4110),
1019
1020
1021
1022 IfTime(4111),
1023
1024
1025
1026 IfDuration(4112),
1027
1028
1029
1030 IfNullJson(4113),
1031
1032
1033
1034 IfJson(4114),
1035
1036
1037
1038 CaseWhenInt(4208),
1039
1040
1041
1042 CaseWhenReal(4209),
1043
1044
1045
1046 CaseWhenDecimal(4210),
1047
1048
1049
1050 CaseWhenString(4211),
1051
1052
1053
1054 CaseWhenTime(4212),
1055
1056
1057
1058 CaseWhenDuration(4213),
1059
1060
1061
1062
1063
1064
1065
1066 CaseWhenJson(4214),
1067
1068
1069
1070
1071
1072
1073
1074 AesDecrypt(4501),
1075
1076
1077
1078 AesEncrypt(4502),
1079
1080
1081
1082 Compress(4503),
1083
1084
1085
1086 MD5(4504),
1087
1088
1089
1090 Password(4505),
1091
1092
1093
1094 RandomBytes(4506),
1095
1096
1097
1098 SHA1(4507),
1099
1100
1101
1102 SHA2(4508),
1103
1104
1105
1106 Uncompress(4509),
1107
1108
1109
1110 UncompressedLength(4510),
1111
1112
1113
1114 AesDecryptIV(4511),
1115
1116
1117
1118 AesEncryptIV(4512),
1119
1120
1121
1122 Encode(4513),
1123
1124
1125
1126 Decode(4514),
1127
1128
1129
1130
1131
1132
1133
1134 Database(4521),
1135
1136
1137
1138 FoundRows(4522),
1139
1140
1141
1142 CurrentUser(4523),
1143
1144
1145
1146 User(4524),
1147
1148
1149
1150 ConnectionID(4525),
1151
1152
1153
1154 LastInsertID(4526),
1155
1156
1157
1158 LastInsertIDWithID(4527),
1159
1160
1161
1162 Version(4528),
1163
1164
1165
1166 TiDBVersion(4529),
1167
1168
1169
1170 RowCount(4530),
1171
1172
1173
1174
1175
1176
1177
1178 Sleep(4551),
1179
1180
1181
1182 Lock(4552),
1183
1184
1185
1186 ReleaseLock(4553),
1187
1188
1189
1190 DecimalAnyValue(4554),
1191
1192
1193
1194 DurationAnyValue(4555),
1195
1196
1197
1198 IntAnyValue(4556),
1199
1200
1201
1202 JSONAnyValue(4557),
1203
1204
1205
1206 RealAnyValue(4558),
1207
1208
1209
1210 StringAnyValue(4559),
1211
1212
1213
1214 TimeAnyValue(4560),
1215
1216
1217
1218 InetAton(4561),
1219
1220
1221
1222 InetNtoa(4562),
1223
1224
1225
1226 Inet6Aton(4563),
1227
1228
1229
1230 Inet6Ntoa(4564),
1231
1232
1233
1234 IsIPv4(4565),
1235
1236
1237
1238 IsIPv4Compat(4566),
1239
1240
1241
1242 IsIPv4Mapped(4567),
1243
1244
1245
1246 IsIPv6(4568),
1247
1248
1249
1250 UUID(4569),
1251
1252
1253
1254
1255
1256
1257
1258 LikeSig(4310),
1259
1260
1261
1262 RegexpSig(4311),
1263
1264
1265
1266 RegexpUTF8Sig(4312),
1267
1268
1269
1270
1271
1272
1273
1274 JsonExtractSig(5001),
1275
1276
1277
1278 JsonUnquoteSig(5002),
1279
1280
1281
1282 JsonTypeSig(5003),
1283
1284
1285
1286 JsonSetSig(5004),
1287
1288
1289
1290 JsonInsertSig(5005),
1291
1292
1293
1294 JsonReplaceSig(5006),
1295
1296
1297
1298 JsonRemoveSig(5007),
1299
1300
1301
1302 JsonMergeSig(5008),
1303
1304
1305
1306 JsonObjectSig(5009),
1307
1308
1309
1310 JsonArraySig(5010),
1311
1312
1313
1314 JsonValidJsonSig(5011),
1315
1316
1317
1318 JsonContainsSig(5012),
1319
1320
1321
1322 JsonArrayAppendSig(5013),
1323
1324
1325
1326 JsonArrayInsertSig(5014),
1327
1328
1329
1330 JsonMergePatchSig(5015),
1331
1332
1333
1334 JsonMergePreserveSig(5016),
1335
1336
1337
1338 JsonContainsPathSig(5017),
1339
1340
1341
1342 JsonPrettySig(5018),
1343
1344
1345
1346 JsonQuoteSig(5019),
1347
1348
1349
1350 JsonSearchSig(5020),
1351
1352
1353
1354 JsonStorageSizeSig(5021),
1355
1356
1357
1358 JsonDepthSig(5022),
1359
1360
1361
1362 JsonKeysSig(5023),
1363
1364
1365
1366 JsonLengthSig(5024),
1367
1368
1369
1370 JsonKeys2ArgsSig(5025),
1371
1372
1373
1374 JsonValidStringSig(5026),
1375
1376
1377
1378 JsonValidOthersSig(5027),
1379
1380
1381
1382
1383
1384
1385
1386 DateFormatSig(6001),
1387
1388
1389
1390 DateLiteral(6002),
1391
1392
1393
1394 DateDiff(6003),
1395
1396
1397
1398 NullTimeDiff(6004),
1399
1400
1401
1402 TimeStringTimeDiff(6005),
1403
1404
1405
1406 DurationStringTimeDiff(6006),
1407
1408
1409
1410 DurationDurationTimeDiff(6007),
1411
1412
1413
1414 StringTimeTimeDiff(6008),
1415
1416
1417
1418 StringDurationTimeDiff(6009),
1419
1420
1421
1422 StringStringTimeDiff(6010),
1423
1424
1425
1426 TimeTimeTimeDiff(6011),
1427
1428
1429
1430 Date(6012),
1431
1432
1433
1434 Hour(6013),
1435
1436
1437
1438 Minute(6014),
1439
1440
1441
1442 Second(6015),
1443
1444
1445
1446 MicroSecond(6016),
1447
1448
1449
1450 Month(6017),
1451
1452
1453
1454 MonthName(6018),
1455
1456
1457
1458 NowWithArg(6019),
1459
1460
1461
1462 NowWithoutArg(6020),
1463
1464
1465
1466 DayName(6021),
1467
1468
1469
1470 DayOfMonth(6022),
1471
1472
1473
1474 DayOfWeek(6023),
1475
1476
1477
1478 DayOfYear(6024),
1479
1480
1481
1482 WeekWithMode(6025),
1483
1484
1485
1486 WeekWithoutMode(6026),
1487
1488
1489
1490 WeekDay(6027),
1491
1492
1493
1494 WeekOfYear(6028),
1495
1496
1497
1498 Year(6029),
1499
1500
1501
1502 YearWeekWithMode(6030),
1503
1504
1505
1506 YearWeekWithoutMode(6031),
1507
1508
1509
1510 GetFormat(6032),
1511
1512
1513
1514 SysDateWithFsp(6033),
1515
1516
1517
1518 SysDateWithoutFsp(6034),
1519
1520
1521
1522 CurrentDate(6035),
1523
1524
1525
1526 CurrentTime0Arg(6036),
1527
1528
1529
1530 CurrentTime1Arg(6037),
1531
1532
1533
1534 Time(6038),
1535
1536
1537
1538 TimeLiteral(6039),
1539
1540
1541
1542 UTCDate(6040),
1543
1544
1545
1546 UTCTimestampWithArg(6041),
1547
1548
1549
1550 UTCTimestampWithoutArg(6042),
1551
1552
1553
1554 AddDatetimeAndDuration(6043),
1555
1556
1557
1558 AddDatetimeAndString(6044),
1559
1560
1561
1562 AddTimeDateTimeNull(6045),
1563
1564
1565
1566 AddStringAndDuration(6046),
1567
1568
1569
1570 AddStringAndString(6047),
1571
1572
1573
1574 AddTimeStringNull(6048),
1575
1576
1577
1578 AddDurationAndDuration(6049),
1579
1580
1581
1582 AddDurationAndString(6050),
1583
1584
1585
1586 AddTimeDurationNull(6051),
1587
1588
1589
1590 AddDateAndDuration(6052),
1591
1592
1593
1594 AddDateAndString(6053),
1595
1596
1597
1598 SubDatetimeAndDuration(6054),
1599
1600
1601
1602 SubDatetimeAndString(6055),
1603
1604
1605
1606 SubTimeDateTimeNull(6056),
1607
1608
1609
1610 SubStringAndDuration(6057),
1611
1612
1613
1614 SubStringAndString(6058),
1615
1616
1617
1618 SubTimeStringNull(6059),
1619
1620
1621
1622 SubDurationAndDuration(6060),
1623
1624
1625
1626 SubDurationAndString(6061),
1627
1628
1629
1630 SubTimeDurationNull(6062),
1631
1632
1633
1634 SubDateAndDuration(6063),
1635
1636
1637
1638 SubDateAndString(6064),
1639
1640
1641
1642 UnixTimestampCurrent(6065),
1643
1644
1645
1646 UnixTimestampInt(6066),
1647
1648
1649
1650 UnixTimestampDec(6067),
1651
1652
1653
1654 ConvertTz(6068),
1655
1656
1657
1658 MakeDate(6069),
1659
1660
1661
1662 MakeTime(6070),
1663
1664
1665
1666 PeriodAdd(6071),
1667
1668
1669
1670 PeriodDiff(6072),
1671
1672
1673
1674 Quarter(6073),
1675
1676
1677
1678 SecToTime(6074),
1679
1680
1681
1682 TimeToSec(6075),
1683
1684
1685
1686 TimestampAdd(6076),
1687
1688
1689
1690 ToDays(6077),
1691
1692
1693
1694 ToSeconds(6078),
1695
1696
1697
1698 UTCTimeWithArg(6079),
1699
1700
1701
1702 UTCTimeWithoutArg(6080),
1703
1704
1705
1706 Timestamp1Arg(6081),
1707
1708
1709
1710 Timestamp2Args(6082),
1711
1712
1713
1714 TimestampLiteral(6083),
1715
1716
1717
1718 LastDay(6084),
1719
1720
1721
1722 StrToDateDate(6085),
1723
1724
1725
1726 StrToDateDatetime(6086),
1727
1728
1729
1730 StrToDateDuration(6087),
1731
1732
1733
1734 FromUnixTime1Arg(6088),
1735
1736
1737
1738 FromUnixTime2Arg(6089),
1739
1740
1741
1742 ExtractDatetime(6090),
1743
1744
1745
1746 ExtractDuration(6091),
1747
1748
1749
1750 AddDateStringString(6092),
1751
1752
1753
1754 AddDateStringInt(6093),
1755
1756
1757
1758 AddDateStringDecimal(6094),
1759
1760
1761
1762 AddDateIntString(6095),
1763
1764
1765
1766 AddDateIntInt(6096),
1767
1768
1769
1770 AddDateDatetimeString(6097),
1771
1772
1773
1774 AddDateDatetimeInt(6098),
1775
1776
1777
1778 SubDateStringString(6099),
1779
1780
1781
1782 SubDateStringInt(6100),
1783
1784
1785
1786 SubDateStringDecimal(6101),
1787
1788
1789
1790 SubDateIntString(6102),
1791
1792
1793
1794 SubDateIntInt(6103),
1795
1796
1797
1798 SubDateDatetimeString(6104),
1799
1800
1801
1802 SubDateDatetimeInt(6105),
1803
1804
1805
1806 FromDays(6106),
1807
1808
1809
1810 TimeFormat(6107),
1811
1812
1813
1814 TimestampDiff(6108),
1815
1816
1817
1818 SubDateStringReal(6109),
1819
1820
1821
1822 SubDateIntReal(6110),
1823
1824
1825
1826 SubDateIntDecimal(6111),
1827
1828
1829
1830 SubDateDatetimeReal(6112),
1831
1832
1833
1834 SubDateDatetimeDecimal(6113),
1835
1836
1837
1838 SubDateDurationString(6114),
1839
1840
1841
1842 SubDateDurationInt(6115),
1843
1844
1845
1846 SubDateDurationReal(6116),
1847
1848
1849
1850 SubDateDurationDecimal(6117),
1851
1852
1853
1854 AddDateStringReal(6118),
1855
1856
1857
1858 AddDateIntReal(6119),
1859
1860
1861
1862 AddDateIntDecimal(6120),
1863
1864
1865
1866 AddDateDatetimeReal(6121),
1867
1868
1869
1870 AddDateDatetimeDecimal(6122),
1871
1872
1873
1874 AddDateDurationString(6123),
1875
1876
1877
1878 AddDateDurationInt(6124),
1879
1880
1881
1882 AddDateDurationReal(6125),
1883
1884
1885
1886 AddDateDurationDecimal(6126),
1887
1888
1889
1890
1891
1892
1893
1894 BitLength(7001),
1895
1896
1897
1898 Bin(7002),
1899
1900
1901
1902 ASCII(7003),
1903
1904
1905
1906 Char(7004),
1907
1908
1909
1910 CharLengthUTF8(7005),
1911
1912
1913
1914 Concat(7006),
1915
1916
1917
1918 ConcatWS(7007),
1919
1920
1921
1922 Convert(7008),
1923
1924
1925
1926 Elt(7009),
1927
1928
1929
1930 ExportSet3Arg(7010),
1931
1932
1933
1934 ExportSet4Arg(7011),
1935
1936
1937
1938 ExportSet5Arg(7012),
1939
1940
1941
1942 FieldInt(7013),
1943
1944
1945
1946 FieldReal(7014),
1947
1948
1949
1950 FieldString(7015),
1951
1952
1953
1954 FindInSet(7016),
1955
1956
1957
1958 Format(7017),
1959
1960
1961
1962 FormatWithLocale(7018),
1963
1964
1965
1966 FromBase64(7019),
1967
1968
1969
1970 HexIntArg(7020),
1971
1972
1973
1974 HexStrArg(7021),
1975
1976
1977
1978 InsertUTF8(7022),
1979
1980
1981
1982 Insert(7023),
1983
1984
1985
1986 InstrUTF8(7024),
1987
1988
1989
1990 Instr(7025),
1991
1992
1993
1994 LTrim(7026),
1995
1996
1997
1998 LeftUTF8(7027),
1999
2000
2001
2002 Left(7028),
2003
2004
2005
2006 Length(7029),
2007
2008
2009
2010 Locate2ArgsUTF8(7030),
2011
2012
2013
2014 Locate3ArgsUTF8(7031),
2015
2016
2017
2018 Locate2Args(7032),
2019
2020
2021
2022 Locate3Args(7033),
2023
2024
2025
2026 Lower(7034),
2027
2028
2029
2030 LpadUTF8(7035),
2031
2032
2033
2034 Lpad(7036),
2035
2036
2037
2038 MakeSet(7037),
2039
2040
2041
2042 OctInt(7038),
2043
2044
2045
2046 OctString(7039),
2047
2048
2049
2050 Ord(7040),
2051
2052
2053
2054 Quote(7041),
2055
2056
2057
2058 RTrim(7042),
2059
2060
2061
2062 Repeat(7043),
2063
2064
2065
2066 Replace(7044),
2067
2068
2069
2070 ReverseUTF8(7045),
2071
2072
2073
2074 Reverse(7046),
2075
2076
2077
2078 RightUTF8(7047),
2079
2080
2081
2082 Right(7048),
2083
2084
2085
2086 RpadUTF8(7049),
2087
2088
2089
2090 Rpad(7050),
2091
2092
2093
2094 Space(7051),
2095
2096
2097
2098 Strcmp(7052),
2099
2100
2101
2102 Substring2ArgsUTF8(7053),
2103
2104
2105
2106 Substring3ArgsUTF8(7054),
2107
2108
2109
2110 Substring2Args(7055),
2111
2112
2113
2114 Substring3Args(7056),
2115
2116
2117
2118 SubstringIndex(7057),
2119
2120
2121
2122 ToBase64(7058),
2123
2124
2125
2126 Trim1Arg(7059),
2127
2128
2129
2130 Trim2Args(7060),
2131
2132
2133
2134 Trim3Args(7061),
2135
2136
2137
2138 UnHex(7062),
2139
2140
2141
2142 UpperUTF8(7063),
2143
2144
2145
2146 Upper(7064),
2147
2148
2149
2150 CharLength(7065),
2151 ;
2152
2153
2154
2155
2156 public static final int Unspecified_VALUE = 0;
2157
2158
2159
2160
2161
2162
2163
2164 public static final int CastIntAsInt_VALUE = 1;
2165
2166
2167
2168 public static final int CastIntAsReal_VALUE = 2;
2169
2170
2171
2172 public static final int CastIntAsString_VALUE = 3;
2173
2174
2175
2176 public static final int CastIntAsDecimal_VALUE = 4;
2177
2178
2179
2180 public static final int CastIntAsTime_VALUE = 5;
2181
2182
2183
2184 public static final int CastIntAsDuration_VALUE = 6;
2185
2186
2187
2188 public static final int CastIntAsJson_VALUE = 7;
2189
2190
2191
2192 public static final int CastRealAsInt_VALUE = 10;
2193
2194
2195
2196 public static final int CastRealAsReal_VALUE = 11;
2197
2198
2199
2200 public static final int CastRealAsString_VALUE = 12;
2201
2202
2203
2204 public static final int CastRealAsDecimal_VALUE = 13;
2205
2206
2207
2208 public static final int CastRealAsTime_VALUE = 14;
2209
2210
2211
2212 public static final int CastRealAsDuration_VALUE = 15;
2213
2214
2215
2216 public static final int CastRealAsJson_VALUE = 16;
2217
2218
2219
2220 public static final int CastDecimalAsInt_VALUE = 20;
2221
2222
2223
2224 public static final int CastDecimalAsReal_VALUE = 21;
2225
2226
2227
2228 public static final int CastDecimalAsString_VALUE = 22;
2229
2230
2231
2232 public static final int CastDecimalAsDecimal_VALUE = 23;
2233
2234
2235
2236 public static final int CastDecimalAsTime_VALUE = 24;
2237
2238
2239
2240 public static final int CastDecimalAsDuration_VALUE = 25;
2241
2242
2243
2244 public static final int CastDecimalAsJson_VALUE = 26;
2245
2246
2247
2248 public static final int CastStringAsInt_VALUE = 30;
2249
2250
2251
2252 public static final int CastStringAsReal_VALUE = 31;
2253
2254
2255
2256 public static final int CastStringAsString_VALUE = 32;
2257
2258
2259
2260 public static final int CastStringAsDecimal_VALUE = 33;
2261
2262
2263
2264 public static final int CastStringAsTime_VALUE = 34;
2265
2266
2267
2268 public static final int CastStringAsDuration_VALUE = 35;
2269
2270
2271
2272 public static final int CastStringAsJson_VALUE = 36;
2273
2274
2275
2276 public static final int CastTimeAsInt_VALUE = 40;
2277
2278
2279
2280 public static final int CastTimeAsReal_VALUE = 41;
2281
2282
2283
2284 public static final int CastTimeAsString_VALUE = 42;
2285
2286
2287
2288 public static final int CastTimeAsDecimal_VALUE = 43;
2289
2290
2291
2292 public static final int CastTimeAsTime_VALUE = 44;
2293
2294
2295
2296 public static final int CastTimeAsDuration_VALUE = 45;
2297
2298
2299
2300 public static final int CastTimeAsJson_VALUE = 46;
2301
2302
2303
2304 public static final int CastDurationAsInt_VALUE = 50;
2305
2306
2307
2308 public static final int CastDurationAsReal_VALUE = 51;
2309
2310
2311
2312 public static final int CastDurationAsString_VALUE = 52;
2313
2314
2315
2316 public static final int CastDurationAsDecimal_VALUE = 53;
2317
2318
2319
2320 public static final int CastDurationAsTime_VALUE = 54;
2321
2322
2323
2324 public static final int CastDurationAsDuration_VALUE = 55;
2325
2326
2327
2328 public static final int CastDurationAsJson_VALUE = 56;
2329
2330
2331
2332 public static final int CastJsonAsInt_VALUE = 60;
2333
2334
2335
2336 public static final int CastJsonAsReal_VALUE = 61;
2337
2338
2339
2340 public static final int CastJsonAsString_VALUE = 62;
2341
2342
2343
2344 public static final int CastJsonAsDecimal_VALUE = 63;
2345
2346
2347
2348 public static final int CastJsonAsTime_VALUE = 64;
2349
2350
2351
2352 public static final int CastJsonAsDuration_VALUE = 65;
2353
2354
2355
2356 public static final int CastJsonAsJson_VALUE = 66;
2357
2358
2359
2360
2361
2362
2363
2364 public static final int CoalesceInt_VALUE = 4201;
2365
2366
2367
2368 public static final int CoalesceReal_VALUE = 4202;
2369
2370
2371
2372 public static final int CoalesceDecimal_VALUE = 4203;
2373
2374
2375
2376 public static final int CoalesceString_VALUE = 4204;
2377
2378
2379
2380 public static final int CoalesceTime_VALUE = 4205;
2381
2382
2383
2384 public static final int CoalesceDuration_VALUE = 4206;
2385
2386
2387
2388
2389
2390
2391
2392 public static final int CoalesceJson_VALUE = 4207;
2393
2394
2395
2396 public static final int LTInt_VALUE = 100;
2397
2398
2399
2400 public static final int LTReal_VALUE = 101;
2401
2402
2403
2404 public static final int LTDecimal_VALUE = 102;
2405
2406
2407
2408 public static final int LTString_VALUE = 103;
2409
2410
2411
2412 public static final int LTTime_VALUE = 104;
2413
2414
2415
2416 public static final int LTDuration_VALUE = 105;
2417
2418
2419
2420 public static final int LTJson_VALUE = 106;
2421
2422
2423
2424 public static final int LEInt_VALUE = 110;
2425
2426
2427
2428 public static final int LEReal_VALUE = 111;
2429
2430
2431
2432 public static final int LEDecimal_VALUE = 112;
2433
2434
2435
2436 public static final int LEString_VALUE = 113;
2437
2438
2439
2440 public static final int LETime_VALUE = 114;
2441
2442
2443
2444 public static final int LEDuration_VALUE = 115;
2445
2446
2447
2448 public static final int LEJson_VALUE = 116;
2449
2450
2451
2452 public static final int GTInt_VALUE = 120;
2453
2454
2455
2456 public static final int GTReal_VALUE = 121;
2457
2458
2459
2460 public static final int GTDecimal_VALUE = 122;
2461
2462
2463
2464 public static final int GTString_VALUE = 123;
2465
2466
2467
2468 public static final int GTTime_VALUE = 124;
2469
2470
2471
2472 public static final int GTDuration_VALUE = 125;
2473
2474
2475
2476 public static final int GTJson_VALUE = 126;
2477
2478
2479
2480 public static final int GreatestInt_VALUE = 4215;
2481
2482
2483
2484 public static final int GreatestReal_VALUE = 4216;
2485
2486
2487
2488 public static final int GreatestDecimal_VALUE = 4217;
2489
2490
2491
2492 public static final int GreatestString_VALUE = 4218;
2493
2494
2495
2496 public static final int GreatestTime_VALUE = 4219;
2497
2498
2499
2500 public static final int LeastInt_VALUE = 4220;
2501
2502
2503
2504 public static final int LeastReal_VALUE = 4221;
2505
2506
2507
2508 public static final int LeastDecimal_VALUE = 4222;
2509
2510
2511
2512 public static final int LeastString_VALUE = 4223;
2513
2514
2515
2516 public static final int LeastTime_VALUE = 4224;
2517
2518
2519
2520 public static final int IntervalInt_VALUE = 4225;
2521
2522
2523
2524 public static final int IntervalReal_VALUE = 4226;
2525
2526
2527
2528 public static final int GEInt_VALUE = 130;
2529
2530
2531
2532 public static final int GEReal_VALUE = 131;
2533
2534
2535
2536 public static final int GEDecimal_VALUE = 132;
2537
2538
2539
2540 public static final int GEString_VALUE = 133;
2541
2542
2543
2544 public static final int GETime_VALUE = 134;
2545
2546
2547
2548 public static final int GEDuration_VALUE = 135;
2549
2550
2551
2552 public static final int GEJson_VALUE = 136;
2553
2554
2555
2556 public static final int EQInt_VALUE = 140;
2557
2558
2559
2560 public static final int EQReal_VALUE = 141;
2561
2562
2563
2564 public static final int EQDecimal_VALUE = 142;
2565
2566
2567
2568 public static final int EQString_VALUE = 143;
2569
2570
2571
2572 public static final int EQTime_VALUE = 144;
2573
2574
2575
2576 public static final int EQDuration_VALUE = 145;
2577
2578
2579
2580 public static final int EQJson_VALUE = 146;
2581
2582
2583
2584 public static final int NEInt_VALUE = 150;
2585
2586
2587
2588 public static final int NEReal_VALUE = 151;
2589
2590
2591
2592 public static final int NEDecimal_VALUE = 152;
2593
2594
2595
2596 public static final int NEString_VALUE = 153;
2597
2598
2599
2600 public static final int NETime_VALUE = 154;
2601
2602
2603
2604 public static final int NEDuration_VALUE = 155;
2605
2606
2607
2608 public static final int NEJson_VALUE = 156;
2609
2610
2611
2612 public static final int NullEQInt_VALUE = 160;
2613
2614
2615
2616 public static final int NullEQReal_VALUE = 161;
2617
2618
2619
2620 public static final int NullEQDecimal_VALUE = 162;
2621
2622
2623
2624 public static final int NullEQString_VALUE = 163;
2625
2626
2627
2628 public static final int NullEQTime_VALUE = 164;
2629
2630
2631
2632 public static final int NullEQDuration_VALUE = 165;
2633
2634
2635
2636 public static final int NullEQJson_VALUE = 166;
2637
2638
2639
2640
2641
2642
2643
2644 public static final int PlusReal_VALUE = 200;
2645
2646
2647
2648 public static final int PlusDecimal_VALUE = 201;
2649
2650
2651
2652 public static final int PlusInt_VALUE = 203;
2653
2654
2655
2656 public static final int MinusReal_VALUE = 204;
2657
2658
2659
2660 public static final int MinusDecimal_VALUE = 205;
2661
2662
2663
2664 public static final int MinusInt_VALUE = 207;
2665
2666
2667
2668 public static final int MultiplyReal_VALUE = 208;
2669
2670
2671
2672 public static final int MultiplyDecimal_VALUE = 209;
2673
2674
2675
2676 public static final int MultiplyInt_VALUE = 210;
2677
2678
2679
2680 public static final int DivideReal_VALUE = 211;
2681
2682
2683
2684 public static final int DivideDecimal_VALUE = 212;
2685
2686
2687
2688 public static final int IntDivideInt_VALUE = 213;
2689
2690
2691
2692 public static final int IntDivideDecimal_VALUE = 214;
2693
2694
2695
2696 public static final int ModReal_VALUE = 215;
2697
2698
2699
2700 public static final int ModDecimal_VALUE = 216;
2701
2702
2703
2704 public static final int ModInt_VALUE = 217;
2705
2706
2707
2708 public static final int MultiplyIntUnsigned_VALUE = 218;
2709
2710
2711
2712 public static final int PlusIntUnsignedUnsigned_VALUE = 219;
2713
2714
2715
2716 public static final int PlusIntUnsignedSigned_VALUE = 220;
2717
2718
2719
2720 public static final int PlusIntSignedUnsigned_VALUE = 221;
2721
2722
2723
2724 public static final int PlusIntSignedSigned_VALUE = 222;
2725
2726
2727
2728
2729
2730
2731
2732 public static final int AbsInt_VALUE = 2101;
2733
2734
2735
2736 public static final int AbsUInt_VALUE = 2102;
2737
2738
2739
2740 public static final int AbsReal_VALUE = 2103;
2741
2742
2743
2744 public static final int AbsDecimal_VALUE = 2104;
2745
2746
2747
2748 public static final int CeilIntToDec_VALUE = 2105;
2749
2750
2751
2752 public static final int CeilIntToInt_VALUE = 2106;
2753
2754
2755
2756 public static final int CeilDecToInt_VALUE = 2107;
2757
2758
2759
2760 public static final int CeilDecToDec_VALUE = 2108;
2761
2762
2763
2764 public static final int CeilReal_VALUE = 2109;
2765
2766
2767
2768 public static final int FloorIntToDec_VALUE = 2110;
2769
2770
2771
2772 public static final int FloorIntToInt_VALUE = 2111;
2773
2774
2775
2776 public static final int FloorDecToInt_VALUE = 2112;
2777
2778
2779
2780 public static final int FloorDecToDec_VALUE = 2113;
2781
2782
2783
2784 public static final int FloorReal_VALUE = 2114;
2785
2786
2787
2788 public static final int RoundReal_VALUE = 2121;
2789
2790
2791
2792 public static final int RoundInt_VALUE = 2122;
2793
2794
2795
2796 public static final int RoundDec_VALUE = 2123;
2797
2798
2799
2800 public static final int RoundWithFracReal_VALUE = 2124;
2801
2802
2803
2804 public static final int RoundWithFracInt_VALUE = 2125;
2805
2806
2807
2808 public static final int RoundWithFracDec_VALUE = 2126;
2809
2810
2811
2812 public static final int Log1Arg_VALUE = 2131;
2813
2814
2815
2816 public static final int Log2Args_VALUE = 2132;
2817
2818
2819
2820 public static final int Log2_VALUE = 2133;
2821
2822
2823
2824 public static final int Log10_VALUE = 2134;
2825
2826
2827
2828 public static final int Rand_VALUE = 2135;
2829
2830
2831
2832 public static final int RandWithSeedFirstGen_VALUE = 2136;
2833
2834
2835
2836 public static final int Pow_VALUE = 2137;
2837
2838
2839
2840 public static final int Conv_VALUE = 2138;
2841
2842
2843
2844 public static final int CRC32_VALUE = 2139;
2845
2846
2847
2848 public static final int Sign_VALUE = 2140;
2849
2850
2851
2852 public static final int Sqrt_VALUE = 2141;
2853
2854
2855
2856 public static final int Acos_VALUE = 2142;
2857
2858
2859
2860 public static final int Asin_VALUE = 2143;
2861
2862
2863
2864 public static final int Atan1Arg_VALUE = 2144;
2865
2866
2867
2868 public static final int Atan2Args_VALUE = 2145;
2869
2870
2871
2872 public static final int Cos_VALUE = 2146;
2873
2874
2875
2876 public static final int Cot_VALUE = 2147;
2877
2878
2879
2880 public static final int Degrees_VALUE = 2148;
2881
2882
2883
2884 public static final int Exp_VALUE = 2149;
2885
2886
2887
2888 public static final int PI_VALUE = 2150;
2889
2890
2891
2892 public static final int Radians_VALUE = 2151;
2893
2894
2895
2896 public static final int Sin_VALUE = 2152;
2897
2898
2899
2900 public static final int Tan_VALUE = 2153;
2901
2902
2903
2904 public static final int TruncateInt_VALUE = 2154;
2905
2906
2907
2908 public static final int TruncateReal_VALUE = 2155;
2909
2910
2911
2912 public static final int TruncateDecimal_VALUE = 2156;
2913
2914
2915
2916 public static final int TruncateUint_VALUE = 2157;
2917
2918
2919
2920
2921
2922
2923
2924 public static final int LogicalAnd_VALUE = 3101;
2925
2926
2927
2928 public static final int LogicalOr_VALUE = 3102;
2929
2930
2931
2932 public static final int LogicalXor_VALUE = 3103;
2933
2934
2935
2936 public static final int UnaryNotInt_VALUE = 3104;
2937
2938
2939
2940 public static final int UnaryNotDecimal_VALUE = 3105;
2941
2942
2943
2944 public static final int UnaryNotReal_VALUE = 3106;
2945
2946
2947
2948 public static final int UnaryMinusInt_VALUE = 3108;
2949
2950
2951
2952 public static final int UnaryMinusReal_VALUE = 3109;
2953
2954
2955
2956 public static final int UnaryMinusDecimal_VALUE = 3110;
2957
2958
2959
2960 public static final int DecimalIsNull_VALUE = 3111;
2961
2962
2963
2964 public static final int DurationIsNull_VALUE = 3112;
2965
2966
2967
2968 public static final int RealIsNull_VALUE = 3113;
2969
2970
2971
2972 public static final int StringIsNull_VALUE = 3114;
2973
2974
2975
2976 public static final int TimeIsNull_VALUE = 3115;
2977
2978
2979
2980 public static final int IntIsNull_VALUE = 3116;
2981
2982
2983
2984
2985
2986
2987
2988 public static final int JsonIsNull_VALUE = 3117;
2989
2990
2991
2992 public static final int BitAndSig_VALUE = 3118;
2993
2994
2995
2996 public static final int BitOrSig_VALUE = 3119;
2997
2998
2999
3000 public static final int BitXorSig_VALUE = 3120;
3001
3002
3003
3004 public static final int BitNegSig_VALUE = 3121;
3005
3006
3007
3008 public static final int IntIsTrue_VALUE = 3122;
3009
3010
3011
3012 public static final int RealIsTrue_VALUE = 3123;
3013
3014
3015
3016 public static final int DecimalIsTrue_VALUE = 3124;
3017
3018
3019
3020 public static final int IntIsFalse_VALUE = 3125;
3021
3022
3023
3024 public static final int RealIsFalse_VALUE = 3126;
3025
3026
3027
3028 public static final int DecimalIsFalse_VALUE = 3127;
3029
3030
3031
3032 public static final int LeftShift_VALUE = 3129;
3033
3034
3035
3036 public static final int RightShift_VALUE = 3130;
3037
3038
3039
3040
3041
3042
3043
3044 public static final int BitCount_VALUE = 3128;
3045
3046
3047
3048 public static final int GetParamString_VALUE = 3131;
3049
3050
3051
3052 public static final int GetVar_VALUE = 3132;
3053
3054
3055
3056 public static final int RowSig_VALUE = 3133;
3057
3058
3059
3060 public static final int SetVar_VALUE = 3134;
3061
3062
3063
3064 public static final int ValuesDecimal_VALUE = 3135;
3065
3066
3067
3068 public static final int ValuesDuration_VALUE = 3136;
3069
3070
3071
3072 public static final int ValuesInt_VALUE = 3137;
3073
3074
3075
3076 public static final int ValuesJSON_VALUE = 3138;
3077
3078
3079
3080 public static final int ValuesReal_VALUE = 3139;
3081
3082
3083
3084 public static final int ValuesString_VALUE = 3140;
3085
3086
3087
3088 public static final int ValuesTime_VALUE = 3141;
3089
3090
3091
3092 public static final int InInt_VALUE = 4001;
3093
3094
3095
3096 public static final int InReal_VALUE = 4002;
3097
3098
3099
3100 public static final int InDecimal_VALUE = 4003;
3101
3102
3103
3104 public static final int InString_VALUE = 4004;
3105
3106
3107
3108 public static final int InTime_VALUE = 4005;
3109
3110
3111
3112 public static final int InDuration_VALUE = 4006;
3113
3114
3115
3116 public static final int InJson_VALUE = 4007;
3117
3118
3119
3120
3121
3122
3123
3124 public static final int IfNullInt_VALUE = 4101;
3125
3126
3127
3128 public static final int IfNullReal_VALUE = 4102;
3129
3130
3131
3132 public static final int IfNullDecimal_VALUE = 4103;
3133
3134
3135
3136 public static final int IfNullString_VALUE = 4104;
3137
3138
3139
3140 public static final int IfNullTime_VALUE = 4105;
3141
3142
3143
3144 public static final int IfNullDuration_VALUE = 4106;
3145
3146
3147
3148 public static final int IfInt_VALUE = 4107;
3149
3150
3151
3152 public static final int IfReal_VALUE = 4108;
3153
3154
3155
3156 public static final int IfDecimal_VALUE = 4109;
3157
3158
3159
3160 public static final int IfString_VALUE = 4110;
3161
3162
3163
3164 public static final int IfTime_VALUE = 4111;
3165
3166
3167
3168 public static final int IfDuration_VALUE = 4112;
3169
3170
3171
3172 public static final int IfNullJson_VALUE = 4113;
3173
3174
3175
3176 public static final int IfJson_VALUE = 4114;
3177
3178
3179
3180 public static final int CaseWhenInt_VALUE = 4208;
3181
3182
3183
3184 public static final int CaseWhenReal_VALUE = 4209;
3185
3186
3187
3188 public static final int CaseWhenDecimal_VALUE = 4210;
3189
3190
3191
3192 public static final int CaseWhenString_VALUE = 4211;
3193
3194
3195
3196 public static final int CaseWhenTime_VALUE = 4212;
3197
3198
3199
3200 public static final int CaseWhenDuration_VALUE = 4213;
3201
3202
3203
3204
3205
3206
3207
3208 public static final int CaseWhenJson_VALUE = 4214;
3209
3210
3211
3212
3213
3214
3215
3216 public static final int AesDecrypt_VALUE = 4501;
3217
3218
3219
3220 public static final int AesEncrypt_VALUE = 4502;
3221
3222
3223
3224 public static final int Compress_VALUE = 4503;
3225
3226
3227
3228 public static final int MD5_VALUE = 4504;
3229
3230
3231
3232 public static final int Password_VALUE = 4505;
3233
3234
3235
3236 public static final int RandomBytes_VALUE = 4506;
3237
3238
3239
3240 public static final int SHA1_VALUE = 4507;
3241
3242
3243
3244 public static final int SHA2_VALUE = 4508;
3245
3246
3247
3248 public static final int Uncompress_VALUE = 4509;
3249
3250
3251
3252 public static final int UncompressedLength_VALUE = 4510;
3253
3254
3255
3256 public static final int AesDecryptIV_VALUE = 4511;
3257
3258
3259
3260 public static final int AesEncryptIV_VALUE = 4512;
3261
3262
3263
3264 public static final int Encode_VALUE = 4513;
3265
3266
3267
3268 public static final int Decode_VALUE = 4514;
3269
3270
3271
3272
3273
3274
3275
3276 public static final int Database_VALUE = 4521;
3277
3278
3279
3280 public static final int FoundRows_VALUE = 4522;
3281
3282
3283
3284 public static final int CurrentUser_VALUE = 4523;
3285
3286
3287
3288 public static final int User_VALUE = 4524;
3289
3290
3291
3292 public static final int ConnectionID_VALUE = 4525;
3293
3294
3295
3296 public static final int LastInsertID_VALUE = 4526;
3297
3298
3299
3300 public static final int LastInsertIDWithID_VALUE = 4527;
3301
3302
3303
3304 public static final int Version_VALUE = 4528;
3305
3306
3307
3308 public static final int TiDBVersion_VALUE = 4529;
3309
3310
3311
3312 public static final int RowCount_VALUE = 4530;
3313
3314
3315
3316
3317
3318
3319
3320 public static final int Sleep_VALUE = 4551;
3321
3322
3323
3324 public static final int Lock_VALUE = 4552;
3325
3326
3327
3328 public static final int ReleaseLock_VALUE = 4553;
3329
3330
3331
3332 public static final int DecimalAnyValue_VALUE = 4554;
3333
3334
3335
3336 public static final int DurationAnyValue_VALUE = 4555;
3337
3338
3339
3340 public static final int IntAnyValue_VALUE = 4556;
3341
3342
3343
3344 public static final int JSONAnyValue_VALUE = 4557;
3345
3346
3347
3348 public static final int RealAnyValue_VALUE = 4558;
3349
3350
3351
3352 public static final int StringAnyValue_VALUE = 4559;
3353
3354
3355
3356 public static final int TimeAnyValue_VALUE = 4560;
3357
3358
3359
3360 public static final int InetAton_VALUE = 4561;
3361
3362
3363
3364 public static final int InetNtoa_VALUE = 4562;
3365
3366
3367
3368 public static final int Inet6Aton_VALUE = 4563;
3369
3370
3371
3372 public static final int Inet6Ntoa_VALUE = 4564;
3373
3374
3375
3376 public static final int IsIPv4_VALUE = 4565;
3377
3378
3379
3380 public static final int IsIPv4Compat_VALUE = 4566;
3381
3382
3383
3384 public static final int IsIPv4Mapped_VALUE = 4567;
3385
3386
3387
3388 public static final int IsIPv6_VALUE = 4568;
3389
3390
3391
3392 public static final int UUID_VALUE = 4569;
3393
3394
3395
3396
3397
3398
3399
3400 public static final int LikeSig_VALUE = 4310;
3401
3402
3403
3404 public static final int RegexpSig_VALUE = 4311;
3405
3406
3407
3408 public static final int RegexpUTF8Sig_VALUE = 4312;
3409
3410
3411
3412
3413
3414
3415
3416 public static final int JsonExtractSig_VALUE = 5001;
3417
3418
3419
3420 public static final int JsonUnquoteSig_VALUE = 5002;
3421
3422
3423
3424 public static final int JsonTypeSig_VALUE = 5003;
3425
3426
3427
3428 public static final int JsonSetSig_VALUE = 5004;
3429
3430
3431
3432 public static final int JsonInsertSig_VALUE = 5005;
3433
3434
3435
3436 public static final int JsonReplaceSig_VALUE = 5006;
3437
3438
3439
3440 public static final int JsonRemoveSig_VALUE = 5007;
3441
3442
3443
3444 public static final int JsonMergeSig_VALUE = 5008;
3445
3446
3447
3448 public static final int JsonObjectSig_VALUE = 5009;
3449
3450
3451
3452 public static final int JsonArraySig_VALUE = 5010;
3453
3454
3455
3456 public static final int JsonValidJsonSig_VALUE = 5011;
3457
3458
3459
3460 public static final int JsonContainsSig_VALUE = 5012;
3461
3462
3463
3464 public static final int JsonArrayAppendSig_VALUE = 5013;
3465
3466
3467
3468 public static final int JsonArrayInsertSig_VALUE = 5014;
3469
3470
3471
3472 public static final int JsonMergePatchSig_VALUE = 5015;
3473
3474
3475
3476 public static final int JsonMergePreserveSig_VALUE = 5016;
3477
3478
3479
3480 public static final int JsonContainsPathSig_VALUE = 5017;
3481
3482
3483
3484 public static final int JsonPrettySig_VALUE = 5018;
3485
3486
3487
3488 public static final int JsonQuoteSig_VALUE = 5019;
3489
3490
3491
3492 public static final int JsonSearchSig_VALUE = 5020;
3493
3494
3495
3496 public static final int JsonStorageSizeSig_VALUE = 5021;
3497
3498
3499
3500 public static final int JsonDepthSig_VALUE = 5022;
3501
3502
3503
3504 public static final int JsonKeysSig_VALUE = 5023;
3505
3506
3507
3508 public static final int JsonLengthSig_VALUE = 5024;
3509
3510
3511
3512 public static final int JsonKeys2ArgsSig_VALUE = 5025;
3513
3514
3515
3516 public static final int JsonValidStringSig_VALUE = 5026;
3517
3518
3519
3520 public static final int JsonValidOthersSig_VALUE = 5027;
3521
3522
3523
3524
3525
3526
3527
3528 public static final int DateFormatSig_VALUE = 6001;
3529
3530
3531
3532 public static final int DateLiteral_VALUE = 6002;
3533
3534
3535
3536 public static final int DateDiff_VALUE = 6003;
3537
3538
3539
3540 public static final int NullTimeDiff_VALUE = 6004;
3541
3542
3543
3544 public static final int TimeStringTimeDiff_VALUE = 6005;
3545
3546
3547
3548 public static final int DurationStringTimeDiff_VALUE = 6006;
3549
3550
3551
3552 public static final int DurationDurationTimeDiff_VALUE = 6007;
3553
3554
3555
3556 public static final int StringTimeTimeDiff_VALUE = 6008;
3557
3558
3559
3560 public static final int StringDurationTimeDiff_VALUE = 6009;
3561
3562
3563
3564 public static final int StringStringTimeDiff_VALUE = 6010;
3565
3566
3567
3568 public static final int TimeTimeTimeDiff_VALUE = 6011;
3569
3570
3571
3572 public static final int Date_VALUE = 6012;
3573
3574
3575
3576 public static final int Hour_VALUE = 6013;
3577
3578
3579
3580 public static final int Minute_VALUE = 6014;
3581
3582
3583
3584 public static final int Second_VALUE = 6015;
3585
3586
3587
3588 public static final int MicroSecond_VALUE = 6016;
3589
3590
3591
3592 public static final int Month_VALUE = 6017;
3593
3594
3595
3596 public static final int MonthName_VALUE = 6018;
3597
3598
3599
3600 public static final int NowWithArg_VALUE = 6019;
3601
3602
3603
3604 public static final int NowWithoutArg_VALUE = 6020;
3605
3606
3607
3608 public static final int DayName_VALUE = 6021;
3609
3610
3611
3612 public static final int DayOfMonth_VALUE = 6022;
3613
3614
3615
3616 public static final int DayOfWeek_VALUE = 6023;
3617
3618
3619
3620 public static final int DayOfYear_VALUE = 6024;
3621
3622
3623
3624 public static final int WeekWithMode_VALUE = 6025;
3625
3626
3627
3628 public static final int WeekWithoutMode_VALUE = 6026;
3629
3630
3631
3632 public static final int WeekDay_VALUE = 6027;
3633
3634
3635
3636 public static final int WeekOfYear_VALUE = 6028;
3637
3638
3639
3640 public static final int Year_VALUE = 6029;
3641
3642
3643
3644 public static final int YearWeekWithMode_VALUE = 6030;
3645
3646
3647
3648 public static final int YearWeekWithoutMode_VALUE = 6031;
3649
3650
3651
3652 public static final int GetFormat_VALUE = 6032;
3653
3654
3655
3656 public static final int SysDateWithFsp_VALUE = 6033;
3657
3658
3659
3660 public static final int SysDateWithoutFsp_VALUE = 6034;
3661
3662
3663
3664 public static final int CurrentDate_VALUE = 6035;
3665
3666
3667
3668 public static final int CurrentTime0Arg_VALUE = 6036;
3669
3670
3671
3672 public static final int CurrentTime1Arg_VALUE = 6037;
3673
3674
3675
3676 public static final int Time_VALUE = 6038;
3677
3678
3679
3680 public static final int TimeLiteral_VALUE = 6039;
3681
3682
3683
3684 public static final int UTCDate_VALUE = 6040;
3685
3686
3687
3688 public static final int UTCTimestampWithArg_VALUE = 6041;
3689
3690
3691
3692 public static final int UTCTimestampWithoutArg_VALUE = 6042;
3693
3694
3695
3696 public static final int AddDatetimeAndDuration_VALUE = 6043;
3697
3698
3699
3700 public static final int AddDatetimeAndString_VALUE = 6044;
3701
3702
3703
3704 public static final int AddTimeDateTimeNull_VALUE = 6045;
3705
3706
3707
3708 public static final int AddStringAndDuration_VALUE = 6046;
3709
3710
3711
3712 public static final int AddStringAndString_VALUE = 6047;
3713
3714
3715
3716 public static final int AddTimeStringNull_VALUE = 6048;
3717
3718
3719
3720 public static final int AddDurationAndDuration_VALUE = 6049;
3721
3722
3723
3724 public static final int AddDurationAndString_VALUE = 6050;
3725
3726
3727
3728 public static final int AddTimeDurationNull_VALUE = 6051;
3729
3730
3731
3732 public static final int AddDateAndDuration_VALUE = 6052;
3733
3734
3735
3736 public static final int AddDateAndString_VALUE = 6053;
3737
3738
3739
3740 public static final int SubDatetimeAndDuration_VALUE = 6054;
3741
3742
3743
3744 public static final int SubDatetimeAndString_VALUE = 6055;
3745
3746
3747
3748 public static final int SubTimeDateTimeNull_VALUE = 6056;
3749
3750
3751
3752 public static final int SubStringAndDuration_VALUE = 6057;
3753
3754
3755
3756 public static final int SubStringAndString_VALUE = 6058;
3757
3758
3759
3760 public static final int SubTimeStringNull_VALUE = 6059;
3761
3762
3763
3764 public static final int SubDurationAndDuration_VALUE = 6060;
3765
3766
3767
3768 public static final int SubDurationAndString_VALUE = 6061;
3769
3770
3771
3772 public static final int SubTimeDurationNull_VALUE = 6062;
3773
3774
3775
3776 public static final int SubDateAndDuration_VALUE = 6063;
3777
3778
3779
3780 public static final int SubDateAndString_VALUE = 6064;
3781
3782
3783
3784 public static final int UnixTimestampCurrent_VALUE = 6065;
3785
3786
3787
3788 public static final int UnixTimestampInt_VALUE = 6066;
3789
3790
3791
3792 public static final int UnixTimestampDec_VALUE = 6067;
3793
3794
3795
3796 public static final int ConvertTz_VALUE = 6068;
3797
3798
3799
3800 public static final int MakeDate_VALUE = 6069;
3801
3802
3803
3804 public static final int MakeTime_VALUE = 6070;
3805
3806
3807
3808 public static final int PeriodAdd_VALUE = 6071;
3809
3810
3811
3812 public static final int PeriodDiff_VALUE = 6072;
3813
3814
3815
3816 public static final int Quarter_VALUE = 6073;
3817
3818
3819
3820 public static final int SecToTime_VALUE = 6074;
3821
3822
3823
3824 public static final int TimeToSec_VALUE = 6075;
3825
3826
3827
3828 public static final int TimestampAdd_VALUE = 6076;
3829
3830
3831
3832 public static final int ToDays_VALUE = 6077;
3833
3834
3835
3836 public static final int ToSeconds_VALUE = 6078;
3837
3838
3839
3840 public static final int UTCTimeWithArg_VALUE = 6079;
3841
3842
3843
3844 public static final int UTCTimeWithoutArg_VALUE = 6080;
3845
3846
3847
3848 public static final int Timestamp1Arg_VALUE = 6081;
3849
3850
3851
3852 public static final int Timestamp2Args_VALUE = 6082;
3853
3854
3855
3856 public static final int TimestampLiteral_VALUE = 6083;
3857
3858
3859
3860 public static final int LastDay_VALUE = 6084;
3861
3862
3863
3864 public static final int StrToDateDate_VALUE = 6085;
3865
3866
3867
3868 public static final int StrToDateDatetime_VALUE = 6086;
3869
3870
3871
3872 public static final int StrToDateDuration_VALUE = 6087;
3873
3874
3875
3876 public static final int FromUnixTime1Arg_VALUE = 6088;
3877
3878
3879
3880 public static final int FromUnixTime2Arg_VALUE = 6089;
3881
3882
3883
3884 public static final int ExtractDatetime_VALUE = 6090;
3885
3886
3887
3888 public static final int ExtractDuration_VALUE = 6091;
3889
3890
3891
3892 public static final int AddDateStringString_VALUE = 6092;
3893
3894
3895
3896 public static final int AddDateStringInt_VALUE = 6093;
3897
3898
3899
3900 public static final int AddDateStringDecimal_VALUE = 6094;
3901
3902
3903
3904 public static final int AddDateIntString_VALUE = 6095;
3905
3906
3907
3908 public static final int AddDateIntInt_VALUE = 6096;
3909
3910
3911
3912 public static final int AddDateDatetimeString_VALUE = 6097;
3913
3914
3915
3916 public static final int AddDateDatetimeInt_VALUE = 6098;
3917
3918
3919
3920 public static final int SubDateStringString_VALUE = 6099;
3921
3922
3923
3924 public static final int SubDateStringInt_VALUE = 6100;
3925
3926
3927
3928 public static final int SubDateStringDecimal_VALUE = 6101;
3929
3930
3931
3932 public static final int SubDateIntString_VALUE = 6102;
3933
3934
3935
3936 public static final int SubDateIntInt_VALUE = 6103;
3937
3938
3939
3940 public static final int SubDateDatetimeString_VALUE = 6104;
3941
3942
3943
3944 public static final int SubDateDatetimeInt_VALUE = 6105;
3945
3946
3947
3948 public static final int FromDays_VALUE = 6106;
3949
3950
3951
3952 public static final int TimeFormat_VALUE = 6107;
3953
3954
3955
3956 public static final int TimestampDiff_VALUE = 6108;
3957
3958
3959
3960 public static final int SubDateStringReal_VALUE = 6109;
3961
3962
3963
3964 public static final int SubDateIntReal_VALUE = 6110;
3965
3966
3967
3968 public static final int SubDateIntDecimal_VALUE = 6111;
3969
3970
3971
3972 public static final int SubDateDatetimeReal_VALUE = 6112;
3973
3974
3975
3976 public static final int SubDateDatetimeDecimal_VALUE = 6113;
3977
3978
3979
3980 public static final int SubDateDurationString_VALUE = 6114;
3981
3982
3983
3984 public static final int SubDateDurationInt_VALUE = 6115;
3985
3986
3987
3988 public static final int SubDateDurationReal_VALUE = 6116;
3989
3990
3991
3992 public static final int SubDateDurationDecimal_VALUE = 6117;
3993
3994
3995
3996 public static final int AddDateStringReal_VALUE = 6118;
3997
3998
3999
4000 public static final int AddDateIntReal_VALUE = 6119;
4001
4002
4003
4004 public static final int AddDateIntDecimal_VALUE = 6120;
4005
4006
4007
4008 public static final int AddDateDatetimeReal_VALUE = 6121;
4009
4010
4011
4012 public static final int AddDateDatetimeDecimal_VALUE = 6122;
4013
4014
4015
4016 public static final int AddDateDurationString_VALUE = 6123;
4017
4018
4019
4020 public static final int AddDateDurationInt_VALUE = 6124;
4021
4022
4023
4024 public static final int AddDateDurationReal_VALUE = 6125;
4025
4026
4027
4028 public static final int AddDateDurationDecimal_VALUE = 6126;
4029
4030
4031
4032
4033
4034
4035
4036 public static final int BitLength_VALUE = 7001;
4037
4038
4039
4040 public static final int Bin_VALUE = 7002;
4041
4042
4043
4044 public static final int ASCII_VALUE = 7003;
4045
4046
4047
4048 public static final int Char_VALUE = 7004;
4049
4050
4051
4052 public static final int CharLengthUTF8_VALUE = 7005;
4053
4054
4055
4056 public static final int Concat_VALUE = 7006;
4057
4058
4059
4060 public static final int ConcatWS_VALUE = 7007;
4061
4062
4063
4064 public static final int Convert_VALUE = 7008;
4065
4066
4067
4068 public static final int Elt_VALUE = 7009;
4069
4070
4071
4072 public static final int ExportSet3Arg_VALUE = 7010;
4073
4074
4075
4076 public static final int ExportSet4Arg_VALUE = 7011;
4077
4078
4079
4080 public static final int ExportSet5Arg_VALUE = 7012;
4081
4082
4083
4084 public static final int FieldInt_VALUE = 7013;
4085
4086
4087
4088 public static final int FieldReal_VALUE = 7014;
4089
4090
4091
4092 public static final int FieldString_VALUE = 7015;
4093
4094
4095
4096 public static final int FindInSet_VALUE = 7016;
4097
4098
4099
4100 public static final int Format_VALUE = 7017;
4101
4102
4103
4104 public static final int FormatWithLocale_VALUE = 7018;
4105
4106
4107
4108 public static final int FromBase64_VALUE = 7019;
4109
4110
4111
4112 public static final int HexIntArg_VALUE = 7020;
4113
4114
4115
4116 public static final int HexStrArg_VALUE = 7021;
4117
4118
4119
4120 public static final int InsertUTF8_VALUE = 7022;
4121
4122
4123
4124 public static final int Insert_VALUE = 7023;
4125
4126
4127
4128 public static final int InstrUTF8_VALUE = 7024;
4129
4130
4131
4132 public static final int Instr_VALUE = 7025;
4133
4134
4135
4136 public static final int LTrim_VALUE = 7026;
4137
4138
4139
4140 public static final int LeftUTF8_VALUE = 7027;
4141
4142
4143
4144 public static final int Left_VALUE = 7028;
4145
4146
4147
4148 public static final int Length_VALUE = 7029;
4149
4150
4151
4152 public static final int Locate2ArgsUTF8_VALUE = 7030;
4153
4154
4155
4156 public static final int Locate3ArgsUTF8_VALUE = 7031;
4157
4158
4159
4160 public static final int Locate2Args_VALUE = 7032;
4161
4162
4163
4164 public static final int Locate3Args_VALUE = 7033;
4165
4166
4167
4168 public static final int Lower_VALUE = 7034;
4169
4170
4171
4172 public static final int LpadUTF8_VALUE = 7035;
4173
4174
4175
4176 public static final int Lpad_VALUE = 7036;
4177
4178
4179
4180 public static final int MakeSet_VALUE = 7037;
4181
4182
4183
4184 public static final int OctInt_VALUE = 7038;
4185
4186
4187
4188 public static final int OctString_VALUE = 7039;
4189
4190
4191
4192 public static final int Ord_VALUE = 7040;
4193
4194
4195
4196 public static final int Quote_VALUE = 7041;
4197
4198
4199
4200 public static final int RTrim_VALUE = 7042;
4201
4202
4203
4204 public static final int Repeat_VALUE = 7043;
4205
4206
4207
4208 public static final int Replace_VALUE = 7044;
4209
4210
4211
4212 public static final int ReverseUTF8_VALUE = 7045;
4213
4214
4215
4216 public static final int Reverse_VALUE = 7046;
4217
4218
4219
4220 public static final int RightUTF8_VALUE = 7047;
4221
4222
4223
4224 public static final int Right_VALUE = 7048;
4225
4226
4227
4228 public static final int RpadUTF8_VALUE = 7049;
4229
4230
4231
4232 public static final int Rpad_VALUE = 7050;
4233
4234
4235
4236 public static final int Space_VALUE = 7051;
4237
4238
4239
4240 public static final int Strcmp_VALUE = 7052;
4241
4242
4243
4244 public static final int Substring2ArgsUTF8_VALUE = 7053;
4245
4246
4247
4248 public static final int Substring3ArgsUTF8_VALUE = 7054;
4249
4250
4251
4252 public static final int Substring2Args_VALUE = 7055;
4253
4254
4255
4256 public static final int Substring3Args_VALUE = 7056;
4257
4258
4259
4260 public static final int SubstringIndex_VALUE = 7057;
4261
4262
4263
4264 public static final int ToBase64_VALUE = 7058;
4265
4266
4267
4268 public static final int Trim1Arg_VALUE = 7059;
4269
4270
4271
4272 public static final int Trim2Args_VALUE = 7060;
4273
4274
4275
4276 public static final int Trim3Args_VALUE = 7061;
4277
4278
4279
4280 public static final int UnHex_VALUE = 7062;
4281
4282
4283
4284 public static final int UpperUTF8_VALUE = 7063;
4285
4286
4287
4288 public static final int Upper_VALUE = 7064;
4289
4290
4291
4292 public static final int CharLength_VALUE = 7065;
4293
4294
4295 public final int getNumber() {
4296 return value;
4297 }
4298
4299
4300
4301
4302
4303
4304 @java.lang.Deprecated
4305 public static ScalarFuncSig valueOf(int value) {
4306 return forNumber(value);
4307 }
4308
4309
4310
4311
4312
4313 public static ScalarFuncSig forNumber(int value) {
4314 switch (value) {
4315 case 0: return Unspecified;
4316 case 1: return CastIntAsInt;
4317 case 2: return CastIntAsReal;
4318 case 3: return CastIntAsString;
4319 case 4: return CastIntAsDecimal;
4320 case 5: return CastIntAsTime;
4321 case 6: return CastIntAsDuration;
4322 case 7: return CastIntAsJson;
4323 case 10: return CastRealAsInt;
4324 case 11: return CastRealAsReal;
4325 case 12: return CastRealAsString;
4326 case 13: return CastRealAsDecimal;
4327 case 14: return CastRealAsTime;
4328 case 15: return CastRealAsDuration;
4329 case 16: return CastRealAsJson;
4330 case 20: return CastDecimalAsInt;
4331 case 21: return CastDecimalAsReal;
4332 case 22: return CastDecimalAsString;
4333 case 23: return CastDecimalAsDecimal;
4334 case 24: return CastDecimalAsTime;
4335 case 25: return CastDecimalAsDuration;
4336 case 26: return CastDecimalAsJson;
4337 case 30: return CastStringAsInt;
4338 case 31: return CastStringAsReal;
4339 case 32: return CastStringAsString;
4340 case 33: return CastStringAsDecimal;
4341 case 34: return CastStringAsTime;
4342 case 35: return CastStringAsDuration;
4343 case 36: return CastStringAsJson;
4344 case 40: return CastTimeAsInt;
4345 case 41: return CastTimeAsReal;
4346 case 42: return CastTimeAsString;
4347 case 43: return CastTimeAsDecimal;
4348 case 44: return CastTimeAsTime;
4349 case 45: return CastTimeAsDuration;
4350 case 46: return CastTimeAsJson;
4351 case 50: return CastDurationAsInt;
4352 case 51: return CastDurationAsReal;
4353 case 52: return CastDurationAsString;
4354 case 53: return CastDurationAsDecimal;
4355 case 54: return CastDurationAsTime;
4356 case 55: return CastDurationAsDuration;
4357 case 56: return CastDurationAsJson;
4358 case 60: return CastJsonAsInt;
4359 case 61: return CastJsonAsReal;
4360 case 62: return CastJsonAsString;
4361 case 63: return CastJsonAsDecimal;
4362 case 64: return CastJsonAsTime;
4363 case 65: return CastJsonAsDuration;
4364 case 66: return CastJsonAsJson;
4365 case 4201: return CoalesceInt;
4366 case 4202: return CoalesceReal;
4367 case 4203: return CoalesceDecimal;
4368 case 4204: return CoalesceString;
4369 case 4205: return CoalesceTime;
4370 case 4206: return CoalesceDuration;
4371 case 4207: return CoalesceJson;
4372 case 100: return LTInt;
4373 case 101: return LTReal;
4374 case 102: return LTDecimal;
4375 case 103: return LTString;
4376 case 104: return LTTime;
4377 case 105: return LTDuration;
4378 case 106: return LTJson;
4379 case 110: return LEInt;
4380 case 111: return LEReal;
4381 case 112: return LEDecimal;
4382 case 113: return LEString;
4383 case 114: return LETime;
4384 case 115: return LEDuration;
4385 case 116: return LEJson;
4386 case 120: return GTInt;
4387 case 121: return GTReal;
4388 case 122: return GTDecimal;
4389 case 123: return GTString;
4390 case 124: return GTTime;
4391 case 125: return GTDuration;
4392 case 126: return GTJson;
4393 case 4215: return GreatestInt;
4394 case 4216: return GreatestReal;
4395 case 4217: return GreatestDecimal;
4396 case 4218: return GreatestString;
4397 case 4219: return GreatestTime;
4398 case 4220: return LeastInt;
4399 case 4221: return LeastReal;
4400 case 4222: return LeastDecimal;
4401 case 4223: return LeastString;
4402 case 4224: return LeastTime;
4403 case 4225: return IntervalInt;
4404 case 4226: return IntervalReal;
4405 case 130: return GEInt;
4406 case 131: return GEReal;
4407 case 132: return GEDecimal;
4408 case 133: return GEString;
4409 case 134: return GETime;
4410 case 135: return GEDuration;
4411 case 136: return GEJson;
4412 case 140: return EQInt;
4413 case 141: return EQReal;
4414 case 142: return EQDecimal;
4415 case 143: return EQString;
4416 case 144: return EQTime;
4417 case 145: return EQDuration;
4418 case 146: return EQJson;
4419 case 150: return NEInt;
4420 case 151: return NEReal;
4421 case 152: return NEDecimal;
4422 case 153: return NEString;
4423 case 154: return NETime;
4424 case 155: return NEDuration;
4425 case 156: return NEJson;
4426 case 160: return NullEQInt;
4427 case 161: return NullEQReal;
4428 case 162: return NullEQDecimal;
4429 case 163: return NullEQString;
4430 case 164: return NullEQTime;
4431 case 165: return NullEQDuration;
4432 case 166: return NullEQJson;
4433 case 200: return PlusReal;
4434 case 201: return PlusDecimal;
4435 case 203: return PlusInt;
4436 case 204: return MinusReal;
4437 case 205: return MinusDecimal;
4438 case 207: return MinusInt;
4439 case 208: return MultiplyReal;
4440 case 209: return MultiplyDecimal;
4441 case 210: return MultiplyInt;
4442 case 211: return DivideReal;
4443 case 212: return DivideDecimal;
4444 case 213: return IntDivideInt;
4445 case 214: return IntDivideDecimal;
4446 case 215: return ModReal;
4447 case 216: return ModDecimal;
4448 case 217: return ModInt;
4449 case 218: return MultiplyIntUnsigned;
4450 case 219: return PlusIntUnsignedUnsigned;
4451 case 220: return PlusIntUnsignedSigned;
4452 case 221: return PlusIntSignedUnsigned;
4453 case 222: return PlusIntSignedSigned;
4454 case 2101: return AbsInt;
4455 case 2102: return AbsUInt;
4456 case 2103: return AbsReal;
4457 case 2104: return AbsDecimal;
4458 case 2105: return CeilIntToDec;
4459 case 2106: return CeilIntToInt;
4460 case 2107: return CeilDecToInt;
4461 case 2108: return CeilDecToDec;
4462 case 2109: return CeilReal;
4463 case 2110: return FloorIntToDec;
4464 case 2111: return FloorIntToInt;
4465 case 2112: return FloorDecToInt;
4466 case 2113: return FloorDecToDec;
4467 case 2114: return FloorReal;
4468 case 2121: return RoundReal;
4469 case 2122: return RoundInt;
4470 case 2123: return RoundDec;
4471 case 2124: return RoundWithFracReal;
4472 case 2125: return RoundWithFracInt;
4473 case 2126: return RoundWithFracDec;
4474 case 2131: return Log1Arg;
4475 case 2132: return Log2Args;
4476 case 2133: return Log2;
4477 case 2134: return Log10;
4478 case 2135: return Rand;
4479 case 2136: return RandWithSeedFirstGen;
4480 case 2137: return Pow;
4481 case 2138: return Conv;
4482 case 2139: return CRC32;
4483 case 2140: return Sign;
4484 case 2141: return Sqrt;
4485 case 2142: return Acos;
4486 case 2143: return Asin;
4487 case 2144: return Atan1Arg;
4488 case 2145: return Atan2Args;
4489 case 2146: return Cos;
4490 case 2147: return Cot;
4491 case 2148: return Degrees;
4492 case 2149: return Exp;
4493 case 2150: return PI;
4494 case 2151: return Radians;
4495 case 2152: return Sin;
4496 case 2153: return Tan;
4497 case 2154: return TruncateInt;
4498 case 2155: return TruncateReal;
4499 case 2156: return TruncateDecimal;
4500 case 2157: return TruncateUint;
4501 case 3101: return LogicalAnd;
4502 case 3102: return LogicalOr;
4503 case 3103: return LogicalXor;
4504 case 3104: return UnaryNotInt;
4505 case 3105: return UnaryNotDecimal;
4506 case 3106: return UnaryNotReal;
4507 case 3108: return UnaryMinusInt;
4508 case 3109: return UnaryMinusReal;
4509 case 3110: return UnaryMinusDecimal;
4510 case 3111: return DecimalIsNull;
4511 case 3112: return DurationIsNull;
4512 case 3113: return RealIsNull;
4513 case 3114: return StringIsNull;
4514 case 3115: return TimeIsNull;
4515 case 3116: return IntIsNull;
4516 case 3117: return JsonIsNull;
4517 case 3118: return BitAndSig;
4518 case 3119: return BitOrSig;
4519 case 3120: return BitXorSig;
4520 case 3121: return BitNegSig;
4521 case 3122: return IntIsTrue;
4522 case 3123: return RealIsTrue;
4523 case 3124: return DecimalIsTrue;
4524 case 3125: return IntIsFalse;
4525 case 3126: return RealIsFalse;
4526 case 3127: return DecimalIsFalse;
4527 case 3129: return LeftShift;
4528 case 3130: return RightShift;
4529 case 3128: return BitCount;
4530 case 3131: return GetParamString;
4531 case 3132: return GetVar;
4532 case 3133: return RowSig;
4533 case 3134: return SetVar;
4534 case 3135: return ValuesDecimal;
4535 case 3136: return ValuesDuration;
4536 case 3137: return ValuesInt;
4537 case 3138: return ValuesJSON;
4538 case 3139: return ValuesReal;
4539 case 3140: return ValuesString;
4540 case 3141: return ValuesTime;
4541 case 4001: return InInt;
4542 case 4002: return InReal;
4543 case 4003: return InDecimal;
4544 case 4004: return InString;
4545 case 4005: return InTime;
4546 case 4006: return InDuration;
4547 case 4007: return InJson;
4548 case 4101: return IfNullInt;
4549 case 4102: return IfNullReal;
4550 case 4103: return IfNullDecimal;
4551 case 4104: return IfNullString;
4552 case 4105: return IfNullTime;
4553 case 4106: return IfNullDuration;
4554 case 4107: return IfInt;
4555 case 4108: return IfReal;
4556 case 4109: return IfDecimal;
4557 case 4110: return IfString;
4558 case 4111: return IfTime;
4559 case 4112: return IfDuration;
4560 case 4113: return IfNullJson;
4561 case 4114: return IfJson;
4562 case 4208: return CaseWhenInt;
4563 case 4209: return CaseWhenReal;
4564 case 4210: return CaseWhenDecimal;
4565 case 4211: return CaseWhenString;
4566 case 4212: return CaseWhenTime;
4567 case 4213: return CaseWhenDuration;
4568 case 4214: return CaseWhenJson;
4569 case 4501: return AesDecrypt;
4570 case 4502: return AesEncrypt;
4571 case 4503: return Compress;
4572 case 4504: return MD5;
4573 case 4505: return Password;
4574 case 4506: return RandomBytes;
4575 case 4507: return SHA1;
4576 case 4508: return SHA2;
4577 case 4509: return Uncompress;
4578 case 4510: return UncompressedLength;
4579 case 4511: return AesDecryptIV;
4580 case 4512: return AesEncryptIV;
4581 case 4513: return Encode;
4582 case 4514: return Decode;
4583 case 4521: return Database;
4584 case 4522: return FoundRows;
4585 case 4523: return CurrentUser;
4586 case 4524: return User;
4587 case 4525: return ConnectionID;
4588 case 4526: return LastInsertID;
4589 case 4527: return LastInsertIDWithID;
4590 case 4528: return Version;
4591 case 4529: return TiDBVersion;
4592 case 4530: return RowCount;
4593 case 4551: return Sleep;
4594 case 4552: return Lock;
4595 case 4553: return ReleaseLock;
4596 case 4554: return DecimalAnyValue;
4597 case 4555: return DurationAnyValue;
4598 case 4556: return IntAnyValue;
4599 case 4557: return JSONAnyValue;
4600 case 4558: return RealAnyValue;
4601 case 4559: return StringAnyValue;
4602 case 4560: return TimeAnyValue;
4603 case 4561: return InetAton;
4604 case 4562: return InetNtoa;
4605 case 4563: return Inet6Aton;
4606 case 4564: return Inet6Ntoa;
4607 case 4565: return IsIPv4;
4608 case 4566: return IsIPv4Compat;
4609 case 4567: return IsIPv4Mapped;
4610 case 4568: return IsIPv6;
4611 case 4569: return UUID;
4612 case 4310: return LikeSig;
4613 case 4311: return RegexpSig;
4614 case 4312: return RegexpUTF8Sig;
4615 case 5001: return JsonExtractSig;
4616 case 5002: return JsonUnquoteSig;
4617 case 5003: return JsonTypeSig;
4618 case 5004: return JsonSetSig;
4619 case 5005: return JsonInsertSig;
4620 case 5006: return JsonReplaceSig;
4621 case 5007: return JsonRemoveSig;
4622 case 5008: return JsonMergeSig;
4623 case 5009: return JsonObjectSig;
4624 case 5010: return JsonArraySig;
4625 case 5011: return JsonValidJsonSig;
4626 case 5012: return JsonContainsSig;
4627 case 5013: return JsonArrayAppendSig;
4628 case 5014: return JsonArrayInsertSig;
4629 case 5015: return JsonMergePatchSig;
4630 case 5016: return JsonMergePreserveSig;
4631 case 5017: return JsonContainsPathSig;
4632 case 5018: return JsonPrettySig;
4633 case 5019: return JsonQuoteSig;
4634 case 5020: return JsonSearchSig;
4635 case 5021: return JsonStorageSizeSig;
4636 case 5022: return JsonDepthSig;
4637 case 5023: return JsonKeysSig;
4638 case 5024: return JsonLengthSig;
4639 case 5025: return JsonKeys2ArgsSig;
4640 case 5026: return JsonValidStringSig;
4641 case 5027: return JsonValidOthersSig;
4642 case 6001: return DateFormatSig;
4643 case 6002: return DateLiteral;
4644 case 6003: return DateDiff;
4645 case 6004: return NullTimeDiff;
4646 case 6005: return TimeStringTimeDiff;
4647 case 6006: return DurationStringTimeDiff;
4648 case 6007: return DurationDurationTimeDiff;
4649 case 6008: return StringTimeTimeDiff;
4650 case 6009: return StringDurationTimeDiff;
4651 case 6010: return StringStringTimeDiff;
4652 case 6011: return TimeTimeTimeDiff;
4653 case 6012: return Date;
4654 case 6013: return Hour;
4655 case 6014: return Minute;
4656 case 6015: return Second;
4657 case 6016: return MicroSecond;
4658 case 6017: return Month;
4659 case 6018: return MonthName;
4660 case 6019: return NowWithArg;
4661 case 6020: return NowWithoutArg;
4662 case 6021: return DayName;
4663 case 6022: return DayOfMonth;
4664 case 6023: return DayOfWeek;
4665 case 6024: return DayOfYear;
4666 case 6025: return WeekWithMode;
4667 case 6026: return WeekWithoutMode;
4668 case 6027: return WeekDay;
4669 case 6028: return WeekOfYear;
4670 case 6029: return Year;
4671 case 6030: return YearWeekWithMode;
4672 case 6031: return YearWeekWithoutMode;
4673 case 6032: return GetFormat;
4674 case 6033: return SysDateWithFsp;
4675 case 6034: return SysDateWithoutFsp;
4676 case 6035: return CurrentDate;
4677 case 6036: return CurrentTime0Arg;
4678 case 6037: return CurrentTime1Arg;
4679 case 6038: return Time;
4680 case 6039: return TimeLiteral;
4681 case 6040: return UTCDate;
4682 case 6041: return UTCTimestampWithArg;
4683 case 6042: return UTCTimestampWithoutArg;
4684 case 6043: return AddDatetimeAndDuration;
4685 case 6044: return AddDatetimeAndString;
4686 case 6045: return AddTimeDateTimeNull;
4687 case 6046: return AddStringAndDuration;
4688 case 6047: return AddStringAndString;
4689 case 6048: return AddTimeStringNull;
4690 case 6049: return AddDurationAndDuration;
4691 case 6050: return AddDurationAndString;
4692 case 6051: return AddTimeDurationNull;
4693 case 6052: return AddDateAndDuration;
4694 case 6053: return AddDateAndString;
4695 case 6054: return SubDatetimeAndDuration;
4696 case 6055: return SubDatetimeAndString;
4697 case 6056: return SubTimeDateTimeNull;
4698 case 6057: return SubStringAndDuration;
4699 case 6058: return SubStringAndString;
4700 case 6059: return SubTimeStringNull;
4701 case 6060: return SubDurationAndDuration;
4702 case 6061: return SubDurationAndString;
4703 case 6062: return SubTimeDurationNull;
4704 case 6063: return SubDateAndDuration;
4705 case 6064: return SubDateAndString;
4706 case 6065: return UnixTimestampCurrent;
4707 case 6066: return UnixTimestampInt;
4708 case 6067: return UnixTimestampDec;
4709 case 6068: return ConvertTz;
4710 case 6069: return MakeDate;
4711 case 6070: return MakeTime;
4712 case 6071: return PeriodAdd;
4713 case 6072: return PeriodDiff;
4714 case 6073: return Quarter;
4715 case 6074: return SecToTime;
4716 case 6075: return TimeToSec;
4717 case 6076: return TimestampAdd;
4718 case 6077: return ToDays;
4719 case 6078: return ToSeconds;
4720 case 6079: return UTCTimeWithArg;
4721 case 6080: return UTCTimeWithoutArg;
4722 case 6081: return Timestamp1Arg;
4723 case 6082: return Timestamp2Args;
4724 case 6083: return TimestampLiteral;
4725 case 6084: return LastDay;
4726 case 6085: return StrToDateDate;
4727 case 6086: return StrToDateDatetime;
4728 case 6087: return StrToDateDuration;
4729 case 6088: return FromUnixTime1Arg;
4730 case 6089: return FromUnixTime2Arg;
4731 case 6090: return ExtractDatetime;
4732 case 6091: return ExtractDuration;
4733 case 6092: return AddDateStringString;
4734 case 6093: return AddDateStringInt;
4735 case 6094: return AddDateStringDecimal;
4736 case 6095: return AddDateIntString;
4737 case 6096: return AddDateIntInt;
4738 case 6097: return AddDateDatetimeString;
4739 case 6098: return AddDateDatetimeInt;
4740 case 6099: return SubDateStringString;
4741 case 6100: return SubDateStringInt;
4742 case 6101: return SubDateStringDecimal;
4743 case 6102: return SubDateIntString;
4744 case 6103: return SubDateIntInt;
4745 case 6104: return SubDateDatetimeString;
4746 case 6105: return SubDateDatetimeInt;
4747 case 6106: return FromDays;
4748 case 6107: return TimeFormat;
4749 case 6108: return TimestampDiff;
4750 case 6109: return SubDateStringReal;
4751 case 6110: return SubDateIntReal;
4752 case 6111: return SubDateIntDecimal;
4753 case 6112: return SubDateDatetimeReal;
4754 case 6113: return SubDateDatetimeDecimal;
4755 case 6114: return SubDateDurationString;
4756 case 6115: return SubDateDurationInt;
4757 case 6116: return SubDateDurationReal;
4758 case 6117: return SubDateDurationDecimal;
4759 case 6118: return AddDateStringReal;
4760 case 6119: return AddDateIntReal;
4761 case 6120: return AddDateIntDecimal;
4762 case 6121: return AddDateDatetimeReal;
4763 case 6122: return AddDateDatetimeDecimal;
4764 case 6123: return AddDateDurationString;
4765 case 6124: return AddDateDurationInt;
4766 case 6125: return AddDateDurationReal;
4767 case 6126: return AddDateDurationDecimal;
4768 case 7001: return BitLength;
4769 case 7002: return Bin;
4770 case 7003: return ASCII;
4771 case 7004: return Char;
4772 case 7005: return CharLengthUTF8;
4773 case 7006: return Concat;
4774 case 7007: return ConcatWS;
4775 case 7008: return Convert;
4776 case 7009: return Elt;
4777 case 7010: return ExportSet3Arg;
4778 case 7011: return ExportSet4Arg;
4779 case 7012: return ExportSet5Arg;
4780 case 7013: return FieldInt;
4781 case 7014: return FieldReal;
4782 case 7015: return FieldString;
4783 case 7016: return FindInSet;
4784 case 7017: return Format;
4785 case 7018: return FormatWithLocale;
4786 case 7019: return FromBase64;
4787 case 7020: return HexIntArg;
4788 case 7021: return HexStrArg;
4789 case 7022: return InsertUTF8;
4790 case 7023: return Insert;
4791 case 7024: return InstrUTF8;
4792 case 7025: return Instr;
4793 case 7026: return LTrim;
4794 case 7027: return LeftUTF8;
4795 case 7028: return Left;
4796 case 7029: return Length;
4797 case 7030: return Locate2ArgsUTF8;
4798 case 7031: return Locate3ArgsUTF8;
4799 case 7032: return Locate2Args;
4800 case 7033: return Locate3Args;
4801 case 7034: return Lower;
4802 case 7035: return LpadUTF8;
4803 case 7036: return Lpad;
4804 case 7037: return MakeSet;
4805 case 7038: return OctInt;
4806 case 7039: return OctString;
4807 case 7040: return Ord;
4808 case 7041: return Quote;
4809 case 7042: return RTrim;
4810 case 7043: return Repeat;
4811 case 7044: return Replace;
4812 case 7045: return ReverseUTF8;
4813 case 7046: return Reverse;
4814 case 7047: return RightUTF8;
4815 case 7048: return Right;
4816 case 7049: return RpadUTF8;
4817 case 7050: return Rpad;
4818 case 7051: return Space;
4819 case 7052: return Strcmp;
4820 case 7053: return Substring2ArgsUTF8;
4821 case 7054: return Substring3ArgsUTF8;
4822 case 7055: return Substring2Args;
4823 case 7056: return Substring3Args;
4824 case 7057: return SubstringIndex;
4825 case 7058: return ToBase64;
4826 case 7059: return Trim1Arg;
4827 case 7060: return Trim2Args;
4828 case 7061: return Trim3Args;
4829 case 7062: return UnHex;
4830 case 7063: return UpperUTF8;
4831 case 7064: return Upper;
4832 case 7065: return CharLength;
4833 default: return null;
4834 }
4835 }
4836
4837 public static com.google.protobuf.Internal.EnumLiteMap<ScalarFuncSig>
4838 internalGetValueMap() {
4839 return internalValueMap;
4840 }
4841 private static final com.google.protobuf.Internal.EnumLiteMap<
4842 ScalarFuncSig> internalValueMap =
4843 new com.google.protobuf.Internal.EnumLiteMap<ScalarFuncSig>() {
4844 public ScalarFuncSig findValueByNumber(int number) {
4845 return ScalarFuncSig.forNumber(number);
4846 }
4847 };
4848
4849 public final com.google.protobuf.Descriptors.EnumValueDescriptor
4850 getValueDescriptor() {
4851 return getDescriptor().getValues().get(ordinal());
4852 }
4853 public final com.google.protobuf.Descriptors.EnumDescriptor
4854 getDescriptorForType() {
4855 return getDescriptor();
4856 }
4857 public static final com.google.protobuf.Descriptors.EnumDescriptor
4858 getDescriptor() {
4859 return com.pingcap.tidb.tipb.Expression.getDescriptor().getEnumTypes().get(1);
4860 }
4861
4862 private static final ScalarFuncSig[] VALUES = values();
4863
4864 public static ScalarFuncSig valueOf(
4865 com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
4866 if (desc.getType() != getDescriptor()) {
4867 throw new java.lang.IllegalArgumentException(
4868 "EnumValueDescriptor is not for this type.");
4869 }
4870 return VALUES[desc.getIndex()];
4871 }
4872
4873 private final int value;
4874
4875 private ScalarFuncSig(int value) {
4876 this.value = value;
4877 }
4878
4879
4880 }
4881