-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathENodeType.c
2574 lines (2440 loc) · 215 KB
/
ENodeType.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
#include <assert.h>
#include "lua.h"
#include "lauxlib.h"
#include "lualib.h"
#include "gsp_base.h"
#include "gsp_node.h"
#include "ENodeType.h"
void Enum_register_on_luaopen(lua_State *L) {
EVendor_init(L);
EStmtType_init(L);
ECreateType_init(L);
EExecType_init(L);
ESetType_init(L);
ENodeType_init(L);
}
void EVendor_init(lua_State *L) {
static const char* Var_EVendor = "EVendor";
lua_pushstring(L, Var_EVendor);
lua_newtable(L);
lua_pushstring(L, "mssql"); lua_pushnumber(L, 0); lua_settable(L, -3);
lua_pushstring(L, "oracle"); lua_pushnumber(L, 1); lua_settable(L, -3);
lua_pushstring(L, "mysql"); lua_pushnumber(L, 2); lua_settable(L, -3);
lua_pushstring(L, "access"); lua_pushnumber(L, 3); lua_settable(L, -3);
lua_pushstring(L, "generic"); lua_pushnumber(L, 4); lua_settable(L, -3);
lua_pushstring(L, "db2"); lua_pushnumber(L, 5); lua_settable(L, -3);
lua_pushstring(L, "sybase"); lua_pushnumber(L, 6); lua_settable(L, -3);
lua_pushstring(L, "informix"); lua_pushnumber(L, 7); lua_settable(L, -3);
lua_pushstring(L, "postgresql"); lua_pushnumber(L, 8); lua_settable(L, -3);
lua_pushstring(L, "firebird"); lua_pushnumber(L, 9); lua_settable(L, -3);
lua_pushstring(L, "mdx"); lua_pushnumber(L, 10); lua_settable(L, -3);
lua_pushstring(L, "teradata"); lua_pushnumber(L, 11); lua_settable(L, -3);
lua_pushstring(L, "netezza"); lua_pushnumber(L, 12); lua_settable(L, -3);
assert(dbvmysql == 2);
lua_pushstring(L, "dbvmssql"); lua_pushnumber(L, 0); lua_settable(L, -3);
lua_pushstring(L, "dbvoracle"); lua_pushnumber(L, 1); lua_settable(L, -3);
lua_pushstring(L, "dbvmysql"); lua_pushnumber(L, 2); lua_settable(L, -3);
lua_pushstring(L, "dbvaccess"); lua_pushnumber(L, 3); lua_settable(L, -3);
lua_pushstring(L, "dbvgeneric"); lua_pushnumber(L, 4); lua_settable(L, -3);
lua_pushstring(L, "dbvdb2"); lua_pushnumber(L, 5); lua_settable(L, -3);
lua_pushstring(L, "dbvsybase"); lua_pushnumber(L, 6); lua_settable(L, -3);
lua_pushstring(L, "dbvinformix"); lua_pushnumber(L, 7); lua_settable(L, -3);
lua_pushstring(L, "dbvpostgresql"); lua_pushnumber(L, 8); lua_settable(L, -3);
lua_pushstring(L, "dbvfirebird"); lua_pushnumber(L, 9); lua_settable(L, -3);
lua_pushstring(L, "dbvmdx"); lua_pushnumber(L, 10); lua_settable(L, -3);
lua_pushstring(L, "dbvteradata"); lua_pushnumber(L, 11); lua_settable(L, -3);
lua_pushstring(L, "dbvnetezza"); lua_pushnumber(L, 12); lua_settable(L, -3);
assert(dbvnetezza == 12);
lua_settable(L, -3);
}
void EStmtType_init(lua_State *L) {
static const char* Var_EStmtType = "EStmtType";
lua_pushstring(L, Var_EStmtType);
lua_newtable(L);
lua_pushstring(L, "unknown"); lua_pushnumber(L, sstunknown); lua_settable(L, -3);
assert( 0 == sstunknown);
lua_pushstring(L, "invalid"); lua_pushnumber(L, sstinvalid); lua_settable(L, -3);
lua_pushstring(L, "select"); lua_pushnumber(L, sstselect); lua_settable(L, -3);
lua_pushstring(L, "delete"); lua_pushnumber(L, sstdelete); lua_settable(L, -3);
lua_pushstring(L, "update"); lua_pushnumber(L, sstupdate); lua_settable(L, -3);
lua_pushstring(L, "insert"); lua_pushnumber(L, sstinsert); lua_settable(L, -3);
lua_pushstring(L, "createtable"); lua_pushnumber(L, sstcreatetable); lua_settable(L, -3);
lua_pushstring(L, "createview"); lua_pushnumber(L, sstcreateview); lua_settable(L, -3);
lua_pushstring(L, "sqlpluscmd"); lua_pushnumber(L, sstsqlpluscmd); lua_settable(L, -3);
lua_pushstring(L, "createsequence"); lua_pushnumber(L, sstcreatesequence); lua_settable(L, -3);
lua_pushstring(L, "dropsequencestmt"); lua_pushnumber(L, sstdropsequencestmt); lua_settable(L, -3);
lua_pushstring(L, "droptypestmt"); lua_pushnumber(L, sstdroptypestmt); lua_settable(L, -3);
lua_pushstring(L, "plsql_packages"); lua_pushnumber(L, sstplsql_packages); lua_settable(L, -3);
lua_pushstring(L, "plsql_objecttype"); lua_pushnumber(L, sstplsql_objecttype); lua_settable(L, -3);
lua_pushstring(L, "create_plsql_procedure"); lua_pushnumber(L, sstcreate_plsql_procedure); lua_settable(L, -3);
lua_pushstring(L, "create_plsql_function"); lua_pushnumber(L, sstcreate_plsql_function); lua_settable(L, -3);
lua_pushstring(L, "create_varray_type"); lua_pushnumber(L, sstcreate_varray_type); lua_settable(L, -3);
lua_pushstring(L, "create_nested_table_type"); lua_pushnumber(L, sstcreate_nested_table_type); lua_settable(L, -3);
lua_pushstring(L, "createobjecttablestmt"); lua_pushnumber(L, sstcreateobjecttablestmt); lua_settable(L, -3);
lua_pushstring(L, "plsql_block"); lua_pushnumber(L, sstplsql_block); lua_settable(L, -3);
lua_pushstring(L, "plsql_createprocedure"); lua_pushnumber(L, sstplsql_createprocedure); lua_settable(L, -3);
lua_pushstring(L, "plsql_createfunction"); lua_pushnumber(L, sstplsql_createfunction); lua_settable(L, -3);
lua_pushstring(L, "plsql_createpackage"); lua_pushnumber(L, sstplsql_createpackage); lua_settable(L, -3);
lua_pushstring(L, "plsql_createtrigger"); lua_pushnumber(L, sstplsql_createtrigger); lua_settable(L, -3);
lua_pushstring(L, "plsql_createtype"); lua_pushnumber(L, sstplsql_createtype); lua_settable(L, -3);
lua_pushstring(L, "plsql_createtypebody"); lua_pushnumber(L, sstplsql_createtypebody); lua_settable(L, -3);
lua_pushstring(L, "plsql_tabletypedef"); lua_pushnumber(L, sstplsql_tabletypedef); lua_settable(L, -3);
lua_pushstring(L, "plsql_varraytypedef"); lua_pushnumber(L, sstplsql_varraytypedef); lua_settable(L, -3);
lua_pushstring(L, "plsql_createtype_placeholder"); lua_pushnumber(L, sstplsql_createtype_placeholder); lua_settable(L, -3);
lua_pushstring(L, "altersession"); lua_pushnumber(L, sstaltersession); lua_settable(L, -3);
lua_pushstring(L, "createindex"); lua_pushnumber(L, sstcreateindex); lua_settable(L, -3);
lua_pushstring(L, "dropindex"); lua_pushnumber(L, sstdropindex); lua_settable(L, -3);
lua_pushstring(L, "dropview"); lua_pushnumber(L, sstdropview); lua_settable(L, -3);
lua_pushstring(L, "merge"); lua_pushnumber(L, sstmerge); lua_settable(L, -3);
lua_pushstring(L, "droptable"); lua_pushnumber(L, sstdroptable); lua_settable(L, -3);
lua_pushstring(L, "altertable"); lua_pushnumber(L, sstaltertable); lua_settable(L, -3);
lua_pushstring(L, "commit"); lua_pushnumber(L, sstcommit); lua_settable(L, -3);
lua_pushstring(L, "rollback"); lua_pushnumber(L, sstrollback); lua_settable(L, -3);
lua_pushstring(L, "savepoint"); lua_pushnumber(L, sstsavepoint); lua_settable(L, -3);
lua_pushstring(L, "settransaction"); lua_pushnumber(L, sstsettransaction); lua_settable(L, -3);
lua_pushstring(L, "locktable"); lua_pushnumber(L, sstlocktable); lua_settable(L, -3);
lua_pushstring(L, "mssqldummystmt"); lua_pushnumber(L, sstmssqldummystmt); lua_settable(L, -3);
lua_pushstring(L, "createdatabase"); lua_pushnumber(L, sstcreatedatabase); lua_settable(L, -3);
lua_pushstring(L, "revoke"); lua_pushnumber(L, sstrevoke); lua_settable(L, -3);
lua_pushstring(L, "Truncate"); lua_pushnumber(L, sstTruncate); lua_settable(L, -3);
lua_pushstring(L, "creatematerializedview"); lua_pushnumber(L, sstcreatematerializedview); lua_settable(L, -3);
lua_pushstring(L, "createsynonym"); lua_pushnumber(L, sstcreatesynonym); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreateprocedure"); lua_pushnumber(L, sstmssqlcreateprocedure); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreatetrigger"); lua_pushnumber(L, sstmssqlcreatetrigger); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreatefunction"); lua_pushnumber(L, sstmssqlcreatefunction); lua_settable(L, -3);
lua_pushstring(L, "mssqlalterprocedure"); lua_pushnumber(L, sstmssqlalterprocedure); lua_settable(L, -3);
lua_pushstring(L, "mssqlaltertrigger"); lua_pushnumber(L, sstmssqlaltertrigger); lua_settable(L, -3);
lua_pushstring(L, "mssqlalterfunction"); lua_pushnumber(L, sstmssqlalterfunction); lua_settable(L, -3);
lua_pushstring(L, "mssqlif"); lua_pushnumber(L, sstmssqlif); lua_settable(L, -3);
lua_pushstring(L, "mssqlblock"); lua_pushnumber(L, sstmssqlblock); lua_settable(L, -3);
lua_pushstring(L, "mssqlgo"); lua_pushnumber(L, sstmssqlgo); lua_settable(L, -3);
lua_pushstring(L, "mssqldbcc"); lua_pushnumber(L, sstmssqldbcc); lua_settable(L, -3);
lua_pushstring(L, "mssqlrestore"); lua_pushnumber(L, sstmssqlrestore); lua_settable(L, -3);
lua_pushstring(L, "mssqlbackup"); lua_pushnumber(L, sstmssqlbackup); lua_settable(L, -3);
lua_pushstring(L, "mssqlrevoke"); lua_pushnumber(L, sstmssqlrevoke); lua_settable(L, -3);
lua_pushstring(L, "mssqlreadtext"); lua_pushnumber(L, sstmssqlreadtext); lua_settable(L, -3);
lua_pushstring(L, "mssqlgrant"); lua_pushnumber(L, sstmssqlgrant); lua_settable(L, -3);
lua_pushstring(L, "mssqltruncatetable"); lua_pushnumber(L, sstmssqltruncatetable); lua_settable(L, -3);
lua_pushstring(L, "mssqladdsignature"); lua_pushnumber(L, sstmssqladdsignature); lua_settable(L, -3);
lua_pushstring(L, "mssqlalterapplicationrole"); lua_pushnumber(L, sstmssqlalterapplicationrole); lua_settable(L, -3);
lua_pushstring(L, "mssqlalterassembly"); lua_pushnumber(L, sstmssqlalterassembly); lua_settable(L, -3);
lua_pushstring(L, "mssqlalterasymmetrickey"); lua_pushnumber(L, sstmssqlalterasymmetrickey); lua_settable(L, -3);
lua_pushstring(L, "mssqlalterauthorization"); lua_pushnumber(L, sstmssqlalterauthorization); lua_settable(L, -3);
lua_pushstring(L, "mssqlaltercertificate"); lua_pushnumber(L, sstmssqlaltercertificate); lua_settable(L, -3);
lua_pushstring(L, "mssqlaltercredential"); lua_pushnumber(L, sstmssqlaltercredential); lua_settable(L, -3);
lua_pushstring(L, "mssqlalterdatabase"); lua_pushnumber(L, sstmssqlalterdatabase); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreatedatabase"); lua_pushnumber(L, sstmssqlcreatedatabase); lua_settable(L, -3);
lua_pushstring(L, "mssqlalterendpoint"); lua_pushnumber(L, sstmssqlalterendpoint); lua_settable(L, -3);
lua_pushstring(L, "mssqlalterfulltextcatalog"); lua_pushnumber(L, sstmssqlalterfulltextcatalog); lua_settable(L, -3);
lua_pushstring(L, "mssqlalterfulltextindex"); lua_pushnumber(L, sstmssqlalterfulltextindex); lua_settable(L, -3);
lua_pushstring(L, "mssqlalterindex"); lua_pushnumber(L, sstmssqlalterindex); lua_settable(L, -3);
lua_pushstring(L, "mssqlalterlogin"); lua_pushnumber(L, sstmssqlalterlogin); lua_settable(L, -3);
lua_pushstring(L, "mssqlaltermasterkey"); lua_pushnumber(L, sstmssqlaltermasterkey); lua_settable(L, -3);
lua_pushstring(L, "mssqlaltermessagetype"); lua_pushnumber(L, sstmssqlaltermessagetype); lua_settable(L, -3);
lua_pushstring(L, "mssqlalterpartitionfunction"); lua_pushnumber(L, sstmssqlalterpartitionfunction); lua_settable(L, -3);
lua_pushstring(L, "mssqlalterpartitionscheme"); lua_pushnumber(L, sstmssqlalterpartitionscheme); lua_settable(L, -3);
lua_pushstring(L, "mssqlalterqueue"); lua_pushnumber(L, sstmssqlalterqueue); lua_settable(L, -3);
lua_pushstring(L, "mssqlalterremoteservicebinding"); lua_pushnumber(L, sstmssqlalterremoteservicebinding); lua_settable(L, -3);
lua_pushstring(L, "mssqlalterrole"); lua_pushnumber(L, sstmssqlalterrole); lua_settable(L, -3);
lua_pushstring(L, "mssqlalterroute"); lua_pushnumber(L, sstmssqlalterroute); lua_settable(L, -3);
lua_pushstring(L, "mssqlalterschema"); lua_pushnumber(L, sstmssqlalterschema); lua_settable(L, -3);
lua_pushstring(L, "mssqlalterservice"); lua_pushnumber(L, sstmssqlalterservice); lua_settable(L, -3);
lua_pushstring(L, "mssqlalterservicemasterkey"); lua_pushnumber(L, sstmssqlalterservicemasterkey); lua_settable(L, -3);
lua_pushstring(L, "mssqlaltersymmetrickey"); lua_pushnumber(L, sstmssqlaltersymmetrickey); lua_settable(L, -3);
lua_pushstring(L, "mssqlalteruser"); lua_pushnumber(L, sstmssqlalteruser); lua_settable(L, -3);
lua_pushstring(L, "mssqlalterview"); lua_pushnumber(L, sstmssqlalterview); lua_settable(L, -3);
lua_pushstring(L, "mssqlalterxmlschemacollection"); lua_pushnumber(L, sstmssqlalterxmlschemacollection); lua_settable(L, -3);
lua_pushstring(L, "mssqlbackupdatabase"); lua_pushnumber(L, sstmssqlbackupdatabase); lua_settable(L, -3);
lua_pushstring(L, "mssqlbackupcertificate"); lua_pushnumber(L, sstmssqlbackupcertificate); lua_settable(L, -3);
lua_pushstring(L, "mssqlbackuplog"); lua_pushnumber(L, sstmssqlbackuplog); lua_settable(L, -3);
lua_pushstring(L, "mssqlbackupmasterkey"); lua_pushnumber(L, sstmssqlbackupmasterkey); lua_settable(L, -3);
lua_pushstring(L, "mssqlbackupservicemasterkey"); lua_pushnumber(L, sstmssqlbackupservicemasterkey); lua_settable(L, -3);
lua_pushstring(L, "mssqlbeginconversationtimer"); lua_pushnumber(L, sstmssqlbeginconversationtimer); lua_settable(L, -3);
lua_pushstring(L, "mssqlbegindialog"); lua_pushnumber(L, sstmssqlbegindialog); lua_settable(L, -3);
lua_pushstring(L, "mssqlbegindistributed"); lua_pushnumber(L, sstmssqlbegindistributed); lua_settable(L, -3);
lua_pushstring(L, "mssqlbegintran"); lua_pushnumber(L, sstmssqlbegintran); lua_settable(L, -3);
assert( 100 == sstmssqlbegintran);
lua_pushstring(L, "mssqlbreak"); lua_pushnumber(L, sstmssqlbreak); lua_settable(L, -3);
lua_pushstring(L, "mssqlbulkinsert"); lua_pushnumber(L, sstmssqlbulkinsert); lua_settable(L, -3);
lua_pushstring(L, "mssqlclose"); lua_pushnumber(L, sstmssqlclose); lua_settable(L, -3);
lua_pushstring(L, "mssqlclosemasterkey"); lua_pushnumber(L, sstmssqlclosemasterkey); lua_settable(L, -3);
lua_pushstring(L, "mssqlclosesymmetrickey"); lua_pushnumber(L, sstmssqlclosesymmetrickey); lua_settable(L, -3);
lua_pushstring(L, "mssqlcontinue"); lua_pushnumber(L, sstmssqlcontinue); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreateaggregate"); lua_pushnumber(L, sstmssqlcreateaggregate); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreateapplicationrole"); lua_pushnumber(L, sstmssqlcreateapplicationrole); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreateassembly"); lua_pushnumber(L, sstmssqlcreateassembly); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreateasymmetrickey"); lua_pushnumber(L, sstmssqlcreateasymmetrickey); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreatecertificate"); lua_pushnumber(L, sstmssqlcreatecertificate); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreatecontract"); lua_pushnumber(L, sstmssqlcreatecontract); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreatecredential"); lua_pushnumber(L, sstmssqlcreatecredential); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreatedefault"); lua_pushnumber(L, sstmssqlcreatedefault); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreateendpoint"); lua_pushnumber(L, sstmssqlcreateendpoint); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreateeventnotification"); lua_pushnumber(L, sstmssqlcreateeventnotification); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreatefulltextcatalog"); lua_pushnumber(L, sstmssqlcreatefulltextcatalog); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreatefulltextindex"); lua_pushnumber(L, sstmssqlcreatefulltextindex); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreatelogin"); lua_pushnumber(L, sstmssqlcreatelogin); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreatemasterkey"); lua_pushnumber(L, sstmssqlcreatemasterkey); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreatemessagetype"); lua_pushnumber(L, sstmssqlcreatemessagetype); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreatepartitionfunction"); lua_pushnumber(L, sstmssqlcreatepartitionfunction); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreatepartitionscheme"); lua_pushnumber(L, sstmssqlcreatepartitionscheme); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreatequeue"); lua_pushnumber(L, sstmssqlcreatequeue); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreateremoteservicebinding"); lua_pushnumber(L, sstmssqlcreateremoteservicebinding); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreaterole"); lua_pushnumber(L, sstmssqlcreaterole); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreateroute"); lua_pushnumber(L, sstmssqlcreateroute); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreaterule"); lua_pushnumber(L, sstmssqlcreaterule); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreateschema"); lua_pushnumber(L, sstmssqlcreateschema); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreateservice"); lua_pushnumber(L, sstmssqlcreateservice); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreatestatistics"); lua_pushnumber(L, sstmssqlcreatestatistics); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreatesymmetrickey"); lua_pushnumber(L, sstmssqlcreatesymmetrickey); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreatesynonym"); lua_pushnumber(L, sstmssqlcreatesynonym); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreatetype"); lua_pushnumber(L, sstmssqlcreatetype); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreateuser"); lua_pushnumber(L, sstmssqlcreateuser); lua_settable(L, -3);
lua_pushstring(L, "mssqlcreatexmlschemacollection"); lua_pushnumber(L, sstmssqlcreatexmlschemacollection); lua_settable(L, -3);
lua_pushstring(L, "mssqldeallocate"); lua_pushnumber(L, sstmssqldeallocate); lua_settable(L, -3);
lua_pushstring(L, "mssqldeclare"); lua_pushnumber(L, sstmssqldeclare); lua_settable(L, -3);
lua_pushstring(L, "mssqldeny"); lua_pushnumber(L, sstmssqldeny); lua_settable(L, -3);
lua_pushstring(L, "mssqldisabletrigger"); lua_pushnumber(L, sstmssqldisabletrigger); lua_settable(L, -3);
lua_pushstring(L, "mssqldropaggregate"); lua_pushnumber(L, sstmssqldropaggregate); lua_settable(L, -3);
lua_pushstring(L, "mssqldropapplicationrole"); lua_pushnumber(L, sstmssqldropapplicationrole); lua_settable(L, -3);
lua_pushstring(L, "mssqldropassembly"); lua_pushnumber(L, sstmssqldropassembly); lua_settable(L, -3);
lua_pushstring(L, "mssqldropasymmetrickey"); lua_pushnumber(L, sstmssqldropasymmetrickey); lua_settable(L, -3);
lua_pushstring(L, "mssqldropcertificate"); lua_pushnumber(L, sstmssqldropcertificate); lua_settable(L, -3);
lua_pushstring(L, "mssqldropcontract"); lua_pushnumber(L, sstmssqldropcontract); lua_settable(L, -3);
lua_pushstring(L, "mssqldropcredential"); lua_pushnumber(L, sstmssqldropcredential); lua_settable(L, -3);
lua_pushstring(L, "mssqldropdatabase"); lua_pushnumber(L, sstmssqldropdatabase); lua_settable(L, -3);
lua_pushstring(L, "mssqldropdefault"); lua_pushnumber(L, sstmssqldropdefault); lua_settable(L, -3);
lua_pushstring(L, "mssqldropendpoint"); lua_pushnumber(L, sstmssqldropendpoint); lua_settable(L, -3);
lua_pushstring(L, "mssqldropeventnotification"); lua_pushnumber(L, sstmssqldropeventnotification); lua_settable(L, -3);
lua_pushstring(L, "mssqldropfulltextcatalog"); lua_pushnumber(L, sstmssqldropfulltextcatalog); lua_settable(L, -3);
lua_pushstring(L, "mssqldropfulltextindex"); lua_pushnumber(L, sstmssqldropfulltextindex); lua_settable(L, -3);
lua_pushstring(L, "mssqldropfunction"); lua_pushnumber(L, sstmssqldropfunction); lua_settable(L, -3);
lua_pushstring(L, "mssqldropdbobject"); lua_pushnumber(L, sstmssqldropdbobject); lua_settable(L, -3);
lua_pushstring(L, "mssqldropindex"); lua_pushnumber(L, sstmssqldropindex); lua_settable(L, -3);
lua_pushstring(L, "mssqldroplogin"); lua_pushnumber(L, sstmssqldroplogin); lua_settable(L, -3);
lua_pushstring(L, "mssqldropmasterkey"); lua_pushnumber(L, sstmssqldropmasterkey); lua_settable(L, -3);
lua_pushstring(L, "mssqldropmessagetype"); lua_pushnumber(L, sstmssqldropmessagetype); lua_settable(L, -3);
lua_pushstring(L, "mssqldroppartitionfunction"); lua_pushnumber(L, sstmssqldroppartitionfunction); lua_settable(L, -3);
lua_pushstring(L, "mssqldroppartitionscheme"); lua_pushnumber(L, sstmssqldroppartitionscheme); lua_settable(L, -3);
lua_pushstring(L, "mssqldropprocedure"); lua_pushnumber(L, sstmssqldropprocedure); lua_settable(L, -3);
lua_pushstring(L, "mssqldropqueue"); lua_pushnumber(L, sstmssqldropqueue); lua_settable(L, -3);
lua_pushstring(L, "mssqldropremoteservicebinding"); lua_pushnumber(L, sstmssqldropremoteservicebinding); lua_settable(L, -3);
lua_pushstring(L, "mssqldroprole"); lua_pushnumber(L, sstmssqldroprole); lua_settable(L, -3);
lua_pushstring(L, "mssqldroproute"); lua_pushnumber(L, sstmssqldroproute); lua_settable(L, -3);
lua_pushstring(L, "mssqldroprule"); lua_pushnumber(L, sstmssqldroprule); lua_settable(L, -3);
lua_pushstring(L, "mssqldropschema"); lua_pushnumber(L, sstmssqldropschema); lua_settable(L, -3);
lua_pushstring(L, "mssqldropservice"); lua_pushnumber(L, sstmssqldropservice); lua_settable(L, -3);
lua_pushstring(L, "mssqldropsignature"); lua_pushnumber(L, sstmssqldropsignature); lua_settable(L, -3);
lua_pushstring(L, "mssqldropstatistics"); lua_pushnumber(L, sstmssqldropstatistics); lua_settable(L, -3);
lua_pushstring(L, "mssqldropsymmetrickey"); lua_pushnumber(L, sstmssqldropsymmetrickey); lua_settable(L, -3);
lua_pushstring(L, "mssqldropsynonym"); lua_pushnumber(L, sstmssqldropsynonym); lua_settable(L, -3);
lua_pushstring(L, "mssqldroptable"); lua_pushnumber(L, sstmssqldroptable); lua_settable(L, -3);
lua_pushstring(L, "mssqldroptrigger"); lua_pushnumber(L, sstmssqldroptrigger); lua_settable(L, -3);
lua_pushstring(L, "mssqldroptype"); lua_pushnumber(L, sstmssqldroptype); lua_settable(L, -3);
lua_pushstring(L, "mssqldropuser"); lua_pushnumber(L, sstmssqldropuser); lua_settable(L, -3);
lua_pushstring(L, "mssqldropview"); lua_pushnumber(L, sstmssqldropview); lua_settable(L, -3);
lua_pushstring(L, "mssqldropxmlschemacollection"); lua_pushnumber(L, sstmssqldropxmlschemacollection); lua_settable(L, -3);
lua_pushstring(L, "mssqlenabletrigger"); lua_pushnumber(L, sstmssqlenabletrigger); lua_settable(L, -3);
lua_pushstring(L, "mssqlendconversation"); lua_pushnumber(L, sstmssqlendconversation); lua_settable(L, -3);
lua_pushstring(L, "mssqlexecuteas"); lua_pushnumber(L, sstmssqlexecuteas); lua_settable(L, -3);
lua_pushstring(L, "mssqlfetch"); lua_pushnumber(L, sstmssqlfetch); lua_settable(L, -3);
lua_pushstring(L, "mssqlgoto"); lua_pushnumber(L, sstmssqlgoto); lua_settable(L, -3);
lua_pushstring(L, "mssqlkill"); lua_pushnumber(L, sstmssqlkill); lua_settable(L, -3);
lua_pushstring(L, "mssqlkillquerynotificationsubscription"); lua_pushnumber(L, sstmssqlkillquerynotificationsubscription); lua_settable(L, -3);
lua_pushstring(L, "mssqlkillstats"); lua_pushnumber(L, sstmssqlkillstats); lua_settable(L, -3);
lua_pushstring(L, "mssqlmoveconversation"); lua_pushnumber(L, sstmssqlmoveconversation); lua_settable(L, -3);
lua_pushstring(L, "mssqlopen"); lua_pushnumber(L, sstmssqlopen); lua_settable(L, -3);
lua_pushstring(L, "mssqlopenmasterkey"); lua_pushnumber(L, sstmssqlopenmasterkey); lua_settable(L, -3);
lua_pushstring(L, "mssqlopensymmetrickey"); lua_pushnumber(L, sstmssqlopensymmetrickey); lua_settable(L, -3);
lua_pushstring(L, "mssqlprint"); lua_pushnumber(L, sstmssqlprint); lua_settable(L, -3);
lua_pushstring(L, "mssqlraiserror"); lua_pushnumber(L, sstmssqlraiserror); lua_settable(L, -3);
lua_pushstring(L, "mssqlreceive"); lua_pushnumber(L, sstmssqlreceive); lua_settable(L, -3);
lua_pushstring(L, "mssqlreconfigure"); lua_pushnumber(L, sstmssqlreconfigure); lua_settable(L, -3);
lua_pushstring(L, "mssqlrestoredatabase"); lua_pushnumber(L, sstmssqlrestoredatabase); lua_settable(L, -3);
lua_pushstring(L, "mssqlrestorefilelistonly"); lua_pushnumber(L, sstmssqlrestorefilelistonly); lua_settable(L, -3);
lua_pushstring(L, "mssqlrestoreheaderonly"); lua_pushnumber(L, sstmssqlrestoreheaderonly); lua_settable(L, -3);
lua_pushstring(L, "mssqlrestorelabelonly"); lua_pushnumber(L, sstmssqlrestorelabelonly); lua_settable(L, -3);
lua_pushstring(L, "mssqlrestorelog"); lua_pushnumber(L, sstmssqlrestorelog); lua_settable(L, -3);
assert( 200 == sstmssqlrestorelog);
lua_pushstring(L, "mssqlrestoremasterkey"); lua_pushnumber(L, sstmssqlrestoremasterkey); lua_settable(L, -3);
lua_pushstring(L, "mssqlrestorerewindonly"); lua_pushnumber(L, sstmssqlrestorerewindonly); lua_settable(L, -3);
lua_pushstring(L, "mssqlrestoreservicemasterkey"); lua_pushnumber(L, sstmssqlrestoreservicemasterkey); lua_settable(L, -3);
lua_pushstring(L, "mssqlrestoreverifyonly"); lua_pushnumber(L, sstmssqlrestoreverifyonly); lua_settable(L, -3);
lua_pushstring(L, "mssqlrevert"); lua_pushnumber(L, sstmssqlrevert); lua_settable(L, -3);
lua_pushstring(L, "mssqlreturn"); lua_pushnumber(L, sstmssqlreturn); lua_settable(L, -3);
lua_pushstring(L, "mssqlsavetran"); lua_pushnumber(L, sstmssqlsavetran); lua_settable(L, -3);
lua_pushstring(L, "mssqlselect"); lua_pushnumber(L, sstmssqlselect); lua_settable(L, -3);
lua_pushstring(L, "mssqlsendonconversation"); lua_pushnumber(L, sstmssqlsendonconversation); lua_settable(L, -3);
lua_pushstring(L, "mssqlset"); lua_pushnumber(L, sstmssqlset); lua_settable(L, -3);
lua_pushstring(L, "mssqlsetuser"); lua_pushnumber(L, sstmssqlsetuser); lua_settable(L, -3);
lua_pushstring(L, "mssqlshutdown"); lua_pushnumber(L, sstmssqlshutdown); lua_settable(L, -3);
lua_pushstring(L, "mssqlsign"); lua_pushnumber(L, sstmssqlsign); lua_settable(L, -3);
lua_pushstring(L, "mssqlbegintry"); lua_pushnumber(L, sstmssqlbegintry); lua_settable(L, -3);
lua_pushstring(L, "mssqlbegincatch"); lua_pushnumber(L, sstmssqlbegincatch); lua_settable(L, -3);
lua_pushstring(L, "mssqlupdatestatistics"); lua_pushnumber(L, sstmssqlupdatestatistics); lua_settable(L, -3);
lua_pushstring(L, "mssqlupdatetext"); lua_pushnumber(L, sstmssqlupdatetext); lua_settable(L, -3);
lua_pushstring(L, "mssqluse"); lua_pushnumber(L, sstmssqluse); lua_settable(L, -3);
lua_pushstring(L, "mssqlwaitfor"); lua_pushnumber(L, sstmssqlwaitfor); lua_settable(L, -3);
lua_pushstring(L, "mssqlwhile"); lua_pushnumber(L, sstmssqlwhile); lua_settable(L, -3);
lua_pushstring(L, "mssqlcte"); lua_pushnumber(L, sstmssqlcte); lua_settable(L, -3);
lua_pushstring(L, "mssqlwithxmlnamespaces"); lua_pushnumber(L, sstmssqlwithxmlnamespaces); lua_settable(L, -3);
lua_pushstring(L, "mssqlwritetext"); lua_pushnumber(L, sstmssqlwritetext); lua_settable(L, -3);
lua_pushstring(L, "mssqlexec"); lua_pushnumber(L, sstmssqlexec); lua_settable(L, -3);
lua_pushstring(L, "executestmt"); lua_pushnumber(L, sstexecutestmt); lua_settable(L, -3);
lua_pushstring(L, "setstmt"); lua_pushnumber(L, sstsetstmt); lua_settable(L, -3);
lua_pushstring(L, "mssqlcommit"); lua_pushnumber(L, sstmssqlcommit); lua_settable(L, -3);
lua_pushstring(L, "mssqlrollback"); lua_pushnumber(L, sstmssqlrollback); lua_settable(L, -3);
lua_pushstring(L, "raiserror"); lua_pushnumber(L, sstraiserror); lua_settable(L, -3);
lua_pushstring(L, "mssqlwithas"); lua_pushnumber(L, sstmssqlwithas); lua_settable(L, -3);
lua_pushstring(L, "mssqllabel"); lua_pushnumber(L, sstmssqllabel); lua_settable(L, -3);
lua_pushstring(L, "errorstmt"); lua_pushnumber(L, ssterrorstmt); lua_settable(L, -3);
lua_pushstring(L, "mssqldrop"); lua_pushnumber(L, sstmssqldrop); lua_settable(L, -3);
lua_pushstring(L, "mssqlstmtstub"); lua_pushnumber(L, sstmssqlstmtstub); lua_settable(L, -3);
lua_pushstring(L, "mssqlcheckpoint"); lua_pushnumber(L, sstmssqlcheckpoint); lua_settable(L, -3);
lua_pushstring(L, "oraclealtercluster"); lua_pushnumber(L, sstoraclealtercluster); lua_settable(L, -3);
lua_pushstring(L, "oraclealterdatabase"); lua_pushnumber(L, sstoraclealterdatabase); lua_settable(L, -3);
lua_pushstring(L, "mssqlexecfake"); lua_pushnumber(L, sstmssqlexecfake); lua_settable(L, -3);
lua_pushstring(L, "oraclealterdimension"); lua_pushnumber(L, sstoraclealterdimension); lua_settable(L, -3);
lua_pushstring(L, "oraclealterdiskgroup"); lua_pushnumber(L, sstoraclealterdiskgroup); lua_settable(L, -3);
lua_pushstring(L, "oraclealterfunction"); lua_pushnumber(L, sstoraclealterfunction); lua_settable(L, -3);
lua_pushstring(L, "oraclealterindex"); lua_pushnumber(L, sstoraclealterindex); lua_settable(L, -3);
lua_pushstring(L, "oraclealterindextype"); lua_pushnumber(L, sstoraclealterindextype); lua_settable(L, -3);
lua_pushstring(L, "oraclealterjava"); lua_pushnumber(L, sstoraclealterjava); lua_settable(L, -3);
lua_pushstring(L, "oraclealtermaterializedview"); lua_pushnumber(L, sstoraclealtermaterializedview); lua_settable(L, -3);
lua_pushstring(L, "oraclealtermaterializedviewlog"); lua_pushnumber(L, sstoraclealtermaterializedviewlog); lua_settable(L, -3);
lua_pushstring(L, "oraclealteroperator"); lua_pushnumber(L, sstoraclealteroperator); lua_settable(L, -3);
lua_pushstring(L, "oraclealteroutline"); lua_pushnumber(L, sstoraclealteroutline); lua_settable(L, -3);
lua_pushstring(L, "oraclealterpackage"); lua_pushnumber(L, sstoraclealterpackage); lua_settable(L, -3);
lua_pushstring(L, "oraclealterprocedure"); lua_pushnumber(L, sstoraclealterprocedure); lua_settable(L, -3);
lua_pushstring(L, "oraclealterprofile"); lua_pushnumber(L, sstoraclealterprofile); lua_settable(L, -3);
lua_pushstring(L, "oraclealterresourcecost"); lua_pushnumber(L, sstoraclealterresourcecost); lua_settable(L, -3);
lua_pushstring(L, "oraclealterrole"); lua_pushnumber(L, sstoraclealterrole); lua_settable(L, -3);
lua_pushstring(L, "oraclealterrollbacksegment"); lua_pushnumber(L, sstoraclealterrollbacksegment); lua_settable(L, -3);
lua_pushstring(L, "oraclealtersequence"); lua_pushnumber(L, sstoraclealtersequence); lua_settable(L, -3);
lua_pushstring(L, "oraclealtersession"); lua_pushnumber(L, sstoraclealtersession); lua_settable(L, -3);
lua_pushstring(L, "oraclealtersystem"); lua_pushnumber(L, sstoraclealtersystem); lua_settable(L, -3);
lua_pushstring(L, "oraclealtertablespace"); lua_pushnumber(L, sstoraclealtertablespace); lua_settable(L, -3);
lua_pushstring(L, "oraclealtertrigger"); lua_pushnumber(L, sstoraclealtertrigger); lua_settable(L, -3);
lua_pushstring(L, "oraclealtertype"); lua_pushnumber(L, sstoraclealtertype); lua_settable(L, -3);
lua_pushstring(L, "oraclealteruser"); lua_pushnumber(L, sstoraclealteruser); lua_settable(L, -3);
lua_pushstring(L, "oraclealterview"); lua_pushnumber(L, sstoraclealterview); lua_settable(L, -3);
lua_pushstring(L, "oracleanalyze"); lua_pushnumber(L, sstoracleanalyze); lua_settable(L, -3);
lua_pushstring(L, "oracleassociatestatistics"); lua_pushnumber(L, sstoracleassociatestatistics); lua_settable(L, -3);
lua_pushstring(L, "oracleaudit"); lua_pushnumber(L, sstoracleaudit); lua_settable(L, -3);
lua_pushstring(L, "oraclecall"); lua_pushnumber(L, sstoraclecall); lua_settable(L, -3);
lua_pushstring(L, "oraclecomment"); lua_pushnumber(L, sstoraclecomment); lua_settable(L, -3);
lua_pushstring(L, "oraclecommit"); lua_pushnumber(L, sstoraclecommit); lua_settable(L, -3);
lua_pushstring(L, "oraclecreatecluster"); lua_pushnumber(L, sstoraclecreatecluster); lua_settable(L, -3);
lua_pushstring(L, "oraclecreatecontext"); lua_pushnumber(L, sstoraclecreatecontext); lua_settable(L, -3);
lua_pushstring(L, "oraclecreatecontrolfile"); lua_pushnumber(L, sstoraclecreatecontrolfile); lua_settable(L, -3);
lua_pushstring(L, "oraclecreatedatabase"); lua_pushnumber(L, sstoraclecreatedatabase); lua_settable(L, -3);
lua_pushstring(L, "oraclecreatedatabaselink"); lua_pushnumber(L, sstoraclecreatedatabaselink); lua_settable(L, -3);
lua_pushstring(L, "oraclecreatedimension"); lua_pushnumber(L, sstoraclecreatedimension); lua_settable(L, -3);
lua_pushstring(L, "oraclecreatedirectory"); lua_pushnumber(L, sstoraclecreatedirectory); lua_settable(L, -3);
lua_pushstring(L, "oraclecreatediskgroup"); lua_pushnumber(L, sstoraclecreatediskgroup); lua_settable(L, -3);
lua_pushstring(L, "oraclecreatefunction"); lua_pushnumber(L, sstoraclecreatefunction); lua_settable(L, -3);
lua_pushstring(L, "oraclecreateindex"); lua_pushnumber(L, sstoraclecreateindex); lua_settable(L, -3);
lua_pushstring(L, "oraclecreateindextype"); lua_pushnumber(L, sstoraclecreateindextype); lua_settable(L, -3);
lua_pushstring(L, "oraclecreatejava"); lua_pushnumber(L, sstoraclecreatejava); lua_settable(L, -3);
lua_pushstring(L, "oraclecreatelibrary"); lua_pushnumber(L, sstoraclecreatelibrary); lua_settable(L, -3);
lua_pushstring(L, "oraclecreatematerializedview"); lua_pushnumber(L, sstoraclecreatematerializedview); lua_settable(L, -3);
lua_pushstring(L, "oraclecreatematerializedviewlog"); lua_pushnumber(L, sstoraclecreatematerializedviewlog); lua_settable(L, -3);
lua_pushstring(L, "oraclecreateoperator"); lua_pushnumber(L, sstoraclecreateoperator); lua_settable(L, -3);
lua_pushstring(L, "oraclecreateoutline"); lua_pushnumber(L, sstoraclecreateoutline); lua_settable(L, -3);
lua_pushstring(L, "oraclecreatepackagebody"); lua_pushnumber(L, sstoraclecreatepackagebody); lua_settable(L, -3);
lua_pushstring(L, "oraclecreatepfile"); lua_pushnumber(L, sstoraclecreatepfile); lua_settable(L, -3);
lua_pushstring(L, "oraclecreateprocedure"); lua_pushnumber(L, sstoraclecreateprocedure); lua_settable(L, -3);
lua_pushstring(L, "oraclecreateprofile"); lua_pushnumber(L, sstoraclecreateprofile); lua_settable(L, -3);
lua_pushstring(L, "oraclecreaterestorepoint"); lua_pushnumber(L, sstoraclecreaterestorepoint); lua_settable(L, -3);
lua_pushstring(L, "oraclecreaterole"); lua_pushnumber(L, sstoraclecreaterole); lua_settable(L, -3);
lua_pushstring(L, "oraclecreaterollbacksegment"); lua_pushnumber(L, sstoraclecreaterollbacksegment); lua_settable(L, -3);
lua_pushstring(L, "oraclecreateschema"); lua_pushnumber(L, sstoraclecreateschema); lua_settable(L, -3);
lua_pushstring(L, "oraclecreatesequence"); lua_pushnumber(L, sstoraclecreatesequence); lua_settable(L, -3);
lua_pushstring(L, "oraclecreatespfile"); lua_pushnumber(L, sstoraclecreatespfile); lua_settable(L, -3);
lua_pushstring(L, "oraclecreatesynonym"); lua_pushnumber(L, sstoraclecreatesynonym); lua_settable(L, -3);
lua_pushstring(L, "oraclecreatetablespace"); lua_pushnumber(L, sstoraclecreatetablespace); lua_settable(L, -3);
lua_pushstring(L, "oraclecreatetrigger"); lua_pushnumber(L, sstoraclecreatetrigger); lua_settable(L, -3);
lua_pushstring(L, "oraclecreatetype"); lua_pushnumber(L, sstoraclecreatetype); lua_settable(L, -3);
lua_pushstring(L, "oraclecreateuser"); lua_pushnumber(L, sstoraclecreateuser); lua_settable(L, -3);
assert( 300 == sstoraclecreateuser);
lua_pushstring(L, "oraclecreateview"); lua_pushnumber(L, sstoraclecreateview); lua_settable(L, -3);
lua_pushstring(L, "oracledisassociatestatistics"); lua_pushnumber(L, sstoracledisassociatestatistics); lua_settable(L, -3);
lua_pushstring(L, "oracledropcluster"); lua_pushnumber(L, sstoracledropcluster); lua_settable(L, -3);
lua_pushstring(L, "oracledropcontext"); lua_pushnumber(L, sstoracledropcontext); lua_settable(L, -3);
lua_pushstring(L, "oracledropdatabase"); lua_pushnumber(L, sstoracledropdatabase); lua_settable(L, -3);
lua_pushstring(L, "oracledropdatabaselink"); lua_pushnumber(L, sstoracledropdatabaselink); lua_settable(L, -3);
lua_pushstring(L, "oracledropdimension"); lua_pushnumber(L, sstoracledropdimension); lua_settable(L, -3);
lua_pushstring(L, "oracledropdirectory"); lua_pushnumber(L, sstoracledropdirectory); lua_settable(L, -3);
lua_pushstring(L, "oracledropdiskgroup"); lua_pushnumber(L, sstoracledropdiskgroup); lua_settable(L, -3);
lua_pushstring(L, "oracledropfunction"); lua_pushnumber(L, sstoracledropfunction); lua_settable(L, -3);
lua_pushstring(L, "oracledropindex"); lua_pushnumber(L, sstoracledropindex); lua_settable(L, -3);
lua_pushstring(L, "oracledropindextype"); lua_pushnumber(L, sstoracledropindextype); lua_settable(L, -3);
lua_pushstring(L, "oracledropjava"); lua_pushnumber(L, sstoracledropjava); lua_settable(L, -3);
lua_pushstring(L, "oracledroplibrary"); lua_pushnumber(L, sstoracledroplibrary); lua_settable(L, -3);
lua_pushstring(L, "oracledropmaterializedview"); lua_pushnumber(L, sstoracledropmaterializedview); lua_settable(L, -3);
lua_pushstring(L, "oracledropmaterializedviewlog"); lua_pushnumber(L, sstoracledropmaterializedviewlog); lua_settable(L, -3);
lua_pushstring(L, "oracledropoperator"); lua_pushnumber(L, sstoracledropoperator); lua_settable(L, -3);
lua_pushstring(L, "oracledropoutline"); lua_pushnumber(L, sstoracledropoutline); lua_settable(L, -3);
lua_pushstring(L, "oracledroppackage"); lua_pushnumber(L, sstoracledroppackage); lua_settable(L, -3);
lua_pushstring(L, "oracledropprocedure"); lua_pushnumber(L, sstoracledropprocedure); lua_settable(L, -3);
lua_pushstring(L, "oracledropprofile"); lua_pushnumber(L, sstoracledropprofile); lua_settable(L, -3);
lua_pushstring(L, "oracledroprestorepoint"); lua_pushnumber(L, sstoracledroprestorepoint); lua_settable(L, -3);
lua_pushstring(L, "oracledroprole"); lua_pushnumber(L, sstoracledroprole); lua_settable(L, -3);
lua_pushstring(L, "oracledroprollbacksegment"); lua_pushnumber(L, sstoracledroprollbacksegment); lua_settable(L, -3);
lua_pushstring(L, "oracledropsequence"); lua_pushnumber(L, sstoracledropsequence); lua_settable(L, -3);
lua_pushstring(L, "oracledropsynonym"); lua_pushnumber(L, sstoracledropsynonym); lua_settable(L, -3);
lua_pushstring(L, "oracledroptable"); lua_pushnumber(L, sstoracledroptable); lua_settable(L, -3);
lua_pushstring(L, "oracledroptablespace"); lua_pushnumber(L, sstoracledroptablespace); lua_settable(L, -3);
lua_pushstring(L, "oracledroptrigger"); lua_pushnumber(L, sstoracledroptrigger); lua_settable(L, -3);
lua_pushstring(L, "oracledroptype"); lua_pushnumber(L, sstoracledroptype); lua_settable(L, -3);
lua_pushstring(L, "oracledroptypebody"); lua_pushnumber(L, sstoracledroptypebody); lua_settable(L, -3);
lua_pushstring(L, "oracledropuser"); lua_pushnumber(L, sstoracledropuser); lua_settable(L, -3);
lua_pushstring(L, "oracledropview"); lua_pushnumber(L, sstoracledropview); lua_settable(L, -3);
lua_pushstring(L, "oracleexplainplan"); lua_pushnumber(L, sstoracleexplainplan); lua_settable(L, -3);
lua_pushstring(L, "oracleflashbackdatabase"); lua_pushnumber(L, sstoracleflashbackdatabase); lua_settable(L, -3);
lua_pushstring(L, "oracleflashbacktable"); lua_pushnumber(L, sstoracleflashbacktable); lua_settable(L, -3);
lua_pushstring(L, "oraclegrant"); lua_pushnumber(L, sstoraclegrant); lua_settable(L, -3);
lua_pushstring(L, "oraclelocktable"); lua_pushnumber(L, sstoraclelocktable); lua_settable(L, -3);
lua_pushstring(L, "oraclenoaudit"); lua_pushnumber(L, sstoraclenoaudit); lua_settable(L, -3);
lua_pushstring(L, "oraclepurge"); lua_pushnumber(L, sstoraclepurge); lua_settable(L, -3);
lua_pushstring(L, "oraclerename"); lua_pushnumber(L, sstoraclerename); lua_settable(L, -3);
lua_pushstring(L, "oraclerevoke"); lua_pushnumber(L, sstoraclerevoke); lua_settable(L, -3);
lua_pushstring(L, "oraclerollback"); lua_pushnumber(L, sstoraclerollback); lua_settable(L, -3);
lua_pushstring(L, "oraclesavepoint"); lua_pushnumber(L, sstoraclesavepoint); lua_settable(L, -3);
lua_pushstring(L, "oraclesetconstraint"); lua_pushnumber(L, sstoraclesetconstraint); lua_settable(L, -3);
lua_pushstring(L, "oraclesetrole"); lua_pushnumber(L, sstoraclesetrole); lua_settable(L, -3);
lua_pushstring(L, "oraclesettransaction"); lua_pushnumber(L, sstoraclesettransaction); lua_settable(L, -3);
lua_pushstring(L, "oracletruncate"); lua_pushnumber(L, sstoracletruncate); lua_settable(L, -3);
lua_pushstring(L, "mysqlalterdatabase"); lua_pushnumber(L, sstmysqlalterdatabase); lua_settable(L, -3);
lua_pushstring(L, "mysqlalterfunction"); lua_pushnumber(L, sstmysqlalterfunction); lua_settable(L, -3);
lua_pushstring(L, "mysqlalterprocedure"); lua_pushnumber(L, sstmysqlalterprocedure); lua_settable(L, -3);
lua_pushstring(L, "mysqlalterview"); lua_pushnumber(L, sstmysqlalterview); lua_settable(L, -3);
lua_pushstring(L, "mysqlanalyzetable"); lua_pushnumber(L, sstmysqlanalyzetable); lua_settable(L, -3);
lua_pushstring(L, "mysqlbackuptable"); lua_pushnumber(L, sstmysqlbackuptable); lua_settable(L, -3);
lua_pushstring(L, "mysqlcacheindex"); lua_pushnumber(L, sstmysqlcacheindex); lua_settable(L, -3);
lua_pushstring(L, "mysqlcall"); lua_pushnumber(L, sstmysqlcall); lua_settable(L, -3);
lua_pushstring(L, "mysqlcase"); lua_pushnumber(L, sstmysqlcase); lua_settable(L, -3);
lua_pushstring(L, "mysqlchangemasterto"); lua_pushnumber(L, sstmysqlchangemasterto); lua_settable(L, -3);
lua_pushstring(L, "mysqlchecktable"); lua_pushnumber(L, sstmysqlchecktable); lua_settable(L, -3);
lua_pushstring(L, "mysqlchecksumtable"); lua_pushnumber(L, sstmysqlchecksumtable); lua_settable(L, -3);
lua_pushstring(L, "mysqlclose"); lua_pushnumber(L, sstmysqlclose); lua_settable(L, -3);
lua_pushstring(L, "mysqlcommit"); lua_pushnumber(L, sstmysqlcommit); lua_settable(L, -3);
lua_pushstring(L, "mysqlcreatedatabase"); lua_pushnumber(L, sstmysqlcreatedatabase); lua_settable(L, -3);
lua_pushstring(L, "mysqlcreateindex"); lua_pushnumber(L, sstmysqlcreateindex); lua_settable(L, -3);
lua_pushstring(L, "mysqlcreatefunction"); lua_pushnumber(L, sstmysqlcreatefunction); lua_settable(L, -3);
lua_pushstring(L, "mysqlcreateprocedure"); lua_pushnumber(L, sstmysqlcreateprocedure); lua_settable(L, -3);
lua_pushstring(L, "mysqlcreatetrigger"); lua_pushnumber(L, sstmysqlcreatetrigger); lua_settable(L, -3);
lua_pushstring(L, "mysqlcreateuser"); lua_pushnumber(L, sstmysqlcreateuser); lua_settable(L, -3);
lua_pushstring(L, "mysqlcreateview"); lua_pushnumber(L, sstmysqlcreateview); lua_settable(L, -3);
lua_pushstring(L, "mysqldeclare"); lua_pushnumber(L, sstmysqldeclare); lua_settable(L, -3);
lua_pushstring(L, "mysqldescribe"); lua_pushnumber(L, sstmysqldescribe); lua_settable(L, -3);
lua_pushstring(L, "mysqldo"); lua_pushnumber(L, sstmysqldo); lua_settable(L, -3);
lua_pushstring(L, "mysqldropdatabase"); lua_pushnumber(L, sstmysqldropdatabase); lua_settable(L, -3);
lua_pushstring(L, "mysqldropfunction"); lua_pushnumber(L, sstmysqldropfunction); lua_settable(L, -3);
lua_pushstring(L, "mysqldropindex"); lua_pushnumber(L, sstmysqldropindex); lua_settable(L, -3);
lua_pushstring(L, "mysqldropprocedure"); lua_pushnumber(L, sstmysqldropprocedure); lua_settable(L, -3);
lua_pushstring(L, "mysqldroptable"); lua_pushnumber(L, sstmysqldroptable); lua_settable(L, -3);
lua_pushstring(L, "mysqldroptrigger"); lua_pushnumber(L, sstmysqldroptrigger); lua_settable(L, -3);
lua_pushstring(L, "mysqldropuser"); lua_pushnumber(L, sstmysqldropuser); lua_settable(L, -3);
lua_pushstring(L, "mysqldropview"); lua_pushnumber(L, sstmysqldropview); lua_settable(L, -3);
lua_pushstring(L, "mysqlexecute"); lua_pushnumber(L, sstmysqlexecute); lua_settable(L, -3);
lua_pushstring(L, "mysqlfetch"); lua_pushnumber(L, sstmysqlfetch); lua_settable(L, -3);
lua_pushstring(L, "mysqlflush"); lua_pushnumber(L, sstmysqlflush); lua_settable(L, -3);
lua_pushstring(L, "mysqlgrant"); lua_pushnumber(L, sstmysqlgrant); lua_settable(L, -3);
lua_pushstring(L, "mysqlhandler"); lua_pushnumber(L, sstmysqlhandler); lua_settable(L, -3);
lua_pushstring(L, "mysqlif"); lua_pushnumber(L, sstmysqlif); lua_settable(L, -3);
lua_pushstring(L, "mysqliterate"); lua_pushnumber(L, sstmysqliterate); lua_settable(L, -3);
lua_pushstring(L, "mysqlkill"); lua_pushnumber(L, sstmysqlkill); lua_settable(L, -3);
lua_pushstring(L, "mysqlleave"); lua_pushnumber(L, sstmysqlleave); lua_settable(L, -3);
lua_pushstring(L, "mysqlloaddatainfile"); lua_pushnumber(L, sstmysqlloaddatainfile); lua_settable(L, -3);
lua_pushstring(L, "mysqlloaddatafrommaster"); lua_pushnumber(L, sstmysqlloaddatafrommaster); lua_settable(L, -3);
lua_pushstring(L, "mysqlloadindexintocache"); lua_pushnumber(L, sstmysqlloadindexintocache); lua_settable(L, -3);
lua_pushstring(L, "mysqlloadtable"); lua_pushnumber(L, sstmysqlloadtable); lua_settable(L, -3);
lua_pushstring(L, "mysqllocktable"); lua_pushnumber(L, sstmysqllocktable); lua_settable(L, -3);
lua_pushstring(L, "mysqlloop"); lua_pushnumber(L, sstmysqlloop); lua_settable(L, -3);
lua_pushstring(L, "mysqlopen"); lua_pushnumber(L, sstmysqlopen); lua_settable(L, -3);
lua_pushstring(L, "mysqloptimizetable"); lua_pushnumber(L, sstmysqloptimizetable); lua_settable(L, -3);
lua_pushstring(L, "mysqldeallocateprepare"); lua_pushnumber(L, sstmysqldeallocateprepare); lua_settable(L, -3);
lua_pushstring(L, "mysqldropprepare"); lua_pushnumber(L, sstmysqldropprepare); lua_settable(L, -3);
lua_pushstring(L, "mysqlprepare"); lua_pushnumber(L, sstmysqlprepare); lua_settable(L, -3);
assert( 400 == sstmysqlprepare);
lua_pushstring(L, "mysqlpurgelogs"); lua_pushnumber(L, sstmysqlpurgelogs); lua_settable(L, -3);
lua_pushstring(L, "mysqlrepeat"); lua_pushnumber(L, sstmysqlrepeat); lua_settable(L, -3);
lua_pushstring(L, "mysqlreplace"); lua_pushnumber(L, sstmysqlreplace); lua_settable(L, -3);
lua_pushstring(L, "mysqlrenametable"); lua_pushnumber(L, sstmysqlrenametable); lua_settable(L, -3);
lua_pushstring(L, "mysqlrepairtable"); lua_pushnumber(L, sstmysqlrepairtable); lua_settable(L, -3);
lua_pushstring(L, "mysqlreleasesavepoint"); lua_pushnumber(L, sstmysqlreleasesavepoint); lua_settable(L, -3);
lua_pushstring(L, "mysqlrenameuser"); lua_pushnumber(L, sstmysqlrenameuser); lua_settable(L, -3);
lua_pushstring(L, "mysqlrest"); lua_pushnumber(L, sstmysqlrest); lua_settable(L, -3);
lua_pushstring(L, "mysqlresetmaster"); lua_pushnumber(L, sstmysqlresetmaster); lua_settable(L, -3);
lua_pushstring(L, "mysqlresetslave"); lua_pushnumber(L, sstmysqlresetslave); lua_settable(L, -3);
lua_pushstring(L, "mysqlrestoretable"); lua_pushnumber(L, sstmysqlrestoretable); lua_settable(L, -3);
lua_pushstring(L, "mysqlrevoke"); lua_pushnumber(L, sstmysqlrevoke); lua_settable(L, -3);
lua_pushstring(L, "mysqlrollback"); lua_pushnumber(L, sstmysqlrollback); lua_settable(L, -3);
lua_pushstring(L, "mysqlsavepoint"); lua_pushnumber(L, sstmysqlsavepoint); lua_settable(L, -3);
lua_pushstring(L, "mysqlreset"); lua_pushnumber(L, sstmysqlreset); lua_settable(L, -3);
lua_pushstring(L, "mysqlset"); lua_pushnumber(L, sstmysqlset); lua_settable(L, -3);
lua_pushstring(L, "mysqlsetautocommit"); lua_pushnumber(L, sstmysqlsetautocommit); lua_settable(L, -3);
lua_pushstring(L, "mysqlsettransaction"); lua_pushnumber(L, sstmysqlsettransaction); lua_settable(L, -3);
lua_pushstring(L, "mysqlsetpassword"); lua_pushnumber(L, sstmysqlsetpassword); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowcreatedatabase"); lua_pushnumber(L, sstmysqlshowcreatedatabase); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowcharacterset"); lua_pushnumber(L, sstmysqlshowcharacterset); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowcollation"); lua_pushnumber(L, sstmysqlshowcollation); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowcolumns"); lua_pushnumber(L, sstmysqlshowcolumns); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowcreatetable"); lua_pushnumber(L, sstmysqlshowcreatetable); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowcreateview"); lua_pushnumber(L, sstmysqlshowcreateview); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowcreatefunction"); lua_pushnumber(L, sstmysqlshowcreatefunction); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowcreateprocedure"); lua_pushnumber(L, sstmysqlshowcreateprocedure); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowdatabases"); lua_pushnumber(L, sstmysqlshowdatabases); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowengines"); lua_pushnumber(L, sstmysqlshowengines); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowerrors"); lua_pushnumber(L, sstmysqlshowerrors); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowgrants"); lua_pushnumber(L, sstmysqlshowgrants); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowfunctionstatus"); lua_pushnumber(L, sstmysqlshowfunctionstatus); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowindex"); lua_pushnumber(L, sstmysqlshowindex); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowinnodbstatus"); lua_pushnumber(L, sstmysqlshowinnodbstatus); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowlogs"); lua_pushnumber(L, sstmysqlshowlogs); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowprivileges"); lua_pushnumber(L, sstmysqlshowprivileges); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowprocesslist"); lua_pushnumber(L, sstmysqlshowprocesslist); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowstatus"); lua_pushnumber(L, sstmysqlshowstatus); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowtablestatus"); lua_pushnumber(L, sstmysqlshowtablestatus); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowtables"); lua_pushnumber(L, sstmysqlshowtables); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowtriggers"); lua_pushnumber(L, sstmysqlshowtriggers); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowvariables"); lua_pushnumber(L, sstmysqlshowvariables); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowwarnings"); lua_pushnumber(L, sstmysqlshowwarnings); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowbinlogevents"); lua_pushnumber(L, sstmysqlshowbinlogevents); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowmasterlogs"); lua_pushnumber(L, sstmysqlshowmasterlogs); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowmasterstatus"); lua_pushnumber(L, sstmysqlshowmasterstatus); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowslavehosts"); lua_pushnumber(L, sstmysqlshowslavehosts); lua_settable(L, -3);
lua_pushstring(L, "mysqlshowslavestatus"); lua_pushnumber(L, sstmysqlshowslavestatus); lua_settable(L, -3);
lua_pushstring(L, "mysqlstartslave"); lua_pushnumber(L, sstmysqlstartslave); lua_settable(L, -3);
lua_pushstring(L, "mysqlstarttransaction"); lua_pushnumber(L, sstmysqlstarttransaction); lua_settable(L, -3);
lua_pushstring(L, "mysqlsetglobalsql_slave_skip_counter"); lua_pushnumber(L, sstmysqlsetglobalsql_slave_skip_counter); lua_settable(L, -3);
lua_pushstring(L, "mysqlsetsql_log_bin"); lua_pushnumber(L, sstmysqlsetsql_log_bin); lua_settable(L, -3);
lua_pushstring(L, "mysqlstopslave"); lua_pushnumber(L, sstmysqlstopslave); lua_settable(L, -3);
lua_pushstring(L, "mysqltruncate"); lua_pushnumber(L, sstmysqltruncate); lua_settable(L, -3);
lua_pushstring(L, "mysqlunlocktable"); lua_pushnumber(L, sstmysqlunlocktable); lua_settable(L, -3);
lua_pushstring(L, "mysqluse"); lua_pushnumber(L, sstmysqluse); lua_settable(L, -3);
lua_pushstring(L, "mysqlwhile"); lua_pushnumber(L, sstmysqlwhile); lua_settable(L, -3);
lua_pushstring(L, "mysqlshow"); lua_pushnumber(L, sstmysqlshow); lua_settable(L, -3);
lua_pushstring(L, "mysqlreturn"); lua_pushnumber(L, sstmysqlreturn); lua_settable(L, -3);
lua_pushstring(L, "mysqlrepeatstmt"); lua_pushnumber(L, sstmysqlrepeatstmt); lua_settable(L, -3);
lua_pushstring(L, "mysqlwhilestmt"); lua_pushnumber(L, sstmysqlwhilestmt); lua_settable(L, -3);
lua_pushstring(L, "mysqlopencursor"); lua_pushnumber(L, sstmysqlopencursor); lua_settable(L, -3);
lua_pushstring(L, "mysqlfetchcursor"); lua_pushnumber(L, sstmysqlfetchcursor); lua_settable(L, -3);
lua_pushstring(L, "mysqlcasestmt"); lua_pushnumber(L, sstmysqlcasestmt); lua_settable(L, -3);
lua_pushstring(L, "mysqlifstmt"); lua_pushnumber(L, sstmysqlifstmt); lua_settable(L, -3);
lua_pushstring(L, "mysqlloopstmt"); lua_pushnumber(L, sstmysqlloopstmt); lua_settable(L, -3);
lua_pushstring(L, "mysqlstmtstub"); lua_pushnumber(L, sstmysqlstmtstub); lua_settable(L, -3);
lua_pushstring(L, "mysqlblock"); lua_pushnumber(L, sstmysqlblock); lua_settable(L, -3);
lua_pushstring(L, "db2allocatecursor"); lua_pushnumber(L, sstdb2allocatecursor); lua_settable(L, -3);
lua_pushstring(L, "db2alterbufferpool"); lua_pushnumber(L, sstdb2alterbufferpool); lua_settable(L, -3);
lua_pushstring(L, "db2alterdatabasepartitiongroup"); lua_pushnumber(L, sstdb2alterdatabasepartitiongroup); lua_settable(L, -3);
lua_pushstring(L, "db2alterfunction"); lua_pushnumber(L, sstdb2alterfunction); lua_settable(L, -3);
lua_pushstring(L, "db2altermethod"); lua_pushnumber(L, sstdb2altermethod); lua_settable(L, -3);
lua_pushstring(L, "db2alternickname"); lua_pushnumber(L, sstdb2alternickname); lua_settable(L, -3);
lua_pushstring(L, "db2alterprocedure"); lua_pushnumber(L, sstdb2alterprocedure); lua_settable(L, -3);
lua_pushstring(L, "db2altersequence"); lua_pushnumber(L, sstdb2altersequence); lua_settable(L, -3);
lua_pushstring(L, "db2alterserver"); lua_pushnumber(L, sstdb2alterserver); lua_settable(L, -3);
lua_pushstring(L, "db2altertable"); lua_pushnumber(L, sstdb2altertable); lua_settable(L, -3);
lua_pushstring(L, "db2altertablespace"); lua_pushnumber(L, sstdb2altertablespace); lua_settable(L, -3);
lua_pushstring(L, "db2altertype"); lua_pushnumber(L, sstdb2altertype); lua_settable(L, -3);
lua_pushstring(L, "db2alterusermapping"); lua_pushnumber(L, sstdb2alterusermapping); lua_settable(L, -3);
lua_pushstring(L, "db2alterview"); lua_pushnumber(L, sstdb2alterview); lua_settable(L, -3);
lua_pushstring(L, "db2alterwrapper"); lua_pushnumber(L, sstdb2alterwrapper); lua_settable(L, -3);
lua_pushstring(L, "db2associatelocators"); lua_pushnumber(L, sstdb2associatelocators); lua_settable(L, -3);
lua_pushstring(L, "db2begindeclaresection"); lua_pushnumber(L, sstdb2begindeclaresection); lua_settable(L, -3);
lua_pushstring(L, "db2call"); lua_pushnumber(L, sstdb2call); lua_settable(L, -3);
lua_pushstring(L, "db2case"); lua_pushnumber(L, sstdb2case); lua_settable(L, -3);
lua_pushstring(L, "db2close"); lua_pushnumber(L, sstdb2close); lua_settable(L, -3);
lua_pushstring(L, "db2comment"); lua_pushnumber(L, sstdb2comment); lua_settable(L, -3);
lua_pushstring(L, "db2commit"); lua_pushnumber(L, sstdb2commit); lua_settable(L, -3);
lua_pushstring(L, "db2connect"); lua_pushnumber(L, sstdb2connect); lua_settable(L, -3);
lua_pushstring(L, "db2createalias"); lua_pushnumber(L, sstdb2createalias); lua_settable(L, -3);
lua_pushstring(L, "db2createbufferpool"); lua_pushnumber(L, sstdb2createbufferpool); lua_settable(L, -3);
lua_pushstring(L, "db2createdatabasepartitiongroup"); lua_pushnumber(L, sstdb2createdatabasepartitiongroup); lua_settable(L, -3);
lua_pushstring(L, "db2createdistincttype"); lua_pushnumber(L, sstdb2createdistincttype); lua_settable(L, -3);
lua_pushstring(L, "db2createeventmonitor"); lua_pushnumber(L, sstdb2createeventmonitor); lua_settable(L, -3);
lua_pushstring(L, "db2createfunction"); lua_pushnumber(L, sstdb2createfunction); lua_settable(L, -3);
lua_pushstring(L, "db2createfunctionmapping"); lua_pushnumber(L, sstdb2createfunctionmapping); lua_settable(L, -3);
lua_pushstring(L, "db2createindex"); lua_pushnumber(L, sstdb2createindex); lua_settable(L, -3);
lua_pushstring(L, "db2createindexextension"); lua_pushnumber(L, sstdb2createindexextension); lua_settable(L, -3);
assert( 500 == sstdb2createindexextension);
lua_pushstring(L, "db2createmethod"); lua_pushnumber(L, sstdb2createmethod); lua_settable(L, -3);
lua_pushstring(L, "db2createnickname"); lua_pushnumber(L, sstdb2createnickname); lua_settable(L, -3);
lua_pushstring(L, "db2createprocedure"); lua_pushnumber(L, sstdb2createprocedure); lua_settable(L, -3);
lua_pushstring(L, "db2createschema"); lua_pushnumber(L, sstdb2createschema); lua_settable(L, -3);
lua_pushstring(L, "db2createsequence"); lua_pushnumber(L, sstdb2createsequence); lua_settable(L, -3);
lua_pushstring(L, "db2createserver"); lua_pushnumber(L, sstdb2createserver); lua_settable(L, -3);
lua_pushstring(L, "db2createtablespace"); lua_pushnumber(L, sstdb2createtablespace); lua_settable(L, -3);
lua_pushstring(L, "db2createtransform"); lua_pushnumber(L, sstdb2createtransform); lua_settable(L, -3);
lua_pushstring(L, "db2createtrigger"); lua_pushnumber(L, sstdb2createtrigger); lua_settable(L, -3);
lua_pushstring(L, "db2createtype"); lua_pushnumber(L, sstdb2createtype); lua_settable(L, -3);
lua_pushstring(L, "db2createtypemapping"); lua_pushnumber(L, sstdb2createtypemapping); lua_settable(L, -3);
lua_pushstring(L, "db2createusermapping"); lua_pushnumber(L, sstdb2createusermapping); lua_settable(L, -3);
lua_pushstring(L, "db2createwrapper"); lua_pushnumber(L, sstdb2createwrapper); lua_settable(L, -3);
lua_pushstring(L, "db2declarecursor"); lua_pushnumber(L, sstdb2declarecursor); lua_settable(L, -3);
lua_pushstring(L, "db2declareglobaltemporarytable"); lua_pushnumber(L, sstdb2declareglobaltemporarytable); lua_settable(L, -3);
lua_pushstring(L, "db2describe"); lua_pushnumber(L, sstdb2describe); lua_settable(L, -3);
lua_pushstring(L, "db2disconnect"); lua_pushnumber(L, sstdb2disconnect); lua_settable(L, -3);
lua_pushstring(L, "db2drop"); lua_pushnumber(L, sstdb2drop); lua_settable(L, -3);
lua_pushstring(L, "db2echo"); lua_pushnumber(L, sstdb2echo); lua_settable(L, -3);
lua_pushstring(L, "db2enddeclaresection"); lua_pushnumber(L, sstdb2enddeclaresection); lua_settable(L, -3);
lua_pushstring(L, "db2execute"); lua_pushnumber(L, sstdb2execute); lua_settable(L, -3);
lua_pushstring(L, "db2executeimmediate"); lua_pushnumber(L, sstdb2executeimmediate); lua_settable(L, -3);
lua_pushstring(L, "db2explain"); lua_pushnumber(L, sstdb2explain); lua_settable(L, -3);
lua_pushstring(L, "db2fetch"); lua_pushnumber(L, sstdb2fetch); lua_settable(L, -3);
lua_pushstring(L, "db2flusheventmonitor"); lua_pushnumber(L, sstdb2flusheventmonitor); lua_settable(L, -3);
lua_pushstring(L, "db2flushpackagecache"); lua_pushnumber(L, sstdb2flushpackagecache); lua_settable(L, -3);
lua_pushstring(L, "db2for"); lua_pushnumber(L, sstdb2for); lua_settable(L, -3);
lua_pushstring(L, "db2freelocator"); lua_pushnumber(L, sstdb2freelocator); lua_settable(L, -3);
lua_pushstring(L, "db2getdiagnostics"); lua_pushnumber(L, sstdb2getdiagnostics); lua_settable(L, -3);
lua_pushstring(L, "db2goto"); lua_pushnumber(L, sstdb2goto); lua_settable(L, -3);
lua_pushstring(L, "db2grant"); lua_pushnumber(L, sstdb2grant); lua_settable(L, -3);
lua_pushstring(L, "db2if"); lua_pushnumber(L, sstdb2if); lua_settable(L, -3);
lua_pushstring(L, "db2include"); lua_pushnumber(L, sstdb2include); lua_settable(L, -3);
lua_pushstring(L, "db2iterate"); lua_pushnumber(L, sstdb2iterate); lua_settable(L, -3);
lua_pushstring(L, "db2leave"); lua_pushnumber(L, sstdb2leave); lua_settable(L, -3);
lua_pushstring(L, "db2locktable"); lua_pushnumber(L, sstdb2locktable); lua_settable(L, -3);
lua_pushstring(L, "db2loop"); lua_pushnumber(L, sstdb2loop); lua_settable(L, -3);
lua_pushstring(L, "db2open"); lua_pushnumber(L, sstdb2open); lua_settable(L, -3);
lua_pushstring(L, "db2prepare"); lua_pushnumber(L, sstdb2prepare); lua_settable(L, -3);
lua_pushstring(L, "db2refreshtable"); lua_pushnumber(L, sstdb2refreshtable); lua_settable(L, -3);
lua_pushstring(L, "db2release"); lua_pushnumber(L, sstdb2release); lua_settable(L, -3);
lua_pushstring(L, "db2releasesavepoint"); lua_pushnumber(L, sstdb2releasesavepoint); lua_settable(L, -3);
lua_pushstring(L, "db2rename"); lua_pushnumber(L, sstdb2rename); lua_settable(L, -3);
lua_pushstring(L, "db2renametablespace"); lua_pushnumber(L, sstdb2renametablespace); lua_settable(L, -3);
lua_pushstring(L, "db2repeat"); lua_pushnumber(L, sstdb2repeat); lua_settable(L, -3);
lua_pushstring(L, "db2resignal"); lua_pushnumber(L, sstdb2resignal); lua_settable(L, -3);
lua_pushstring(L, "db2return"); lua_pushnumber(L, sstdb2return); lua_settable(L, -3);
lua_pushstring(L, "db2revoke"); lua_pushnumber(L, sstdb2revoke); lua_settable(L, -3);
lua_pushstring(L, "db2rollback"); lua_pushnumber(L, sstdb2rollback); lua_settable(L, -3);
lua_pushstring(L, "db2savepoint"); lua_pushnumber(L, sstdb2savepoint); lua_settable(L, -3);
lua_pushstring(L, "db2setconnection"); lua_pushnumber(L, sstdb2setconnection); lua_settable(L, -3);
lua_pushstring(L, "db2setcurrentdefaulttransformgroup"); lua_pushnumber(L, sstdb2setcurrentdefaulttransformgroup); lua_settable(L, -3);
lua_pushstring(L, "db2setcurrentdegree"); lua_pushnumber(L, sstdb2setcurrentdegree); lua_settable(L, -3);
lua_pushstring(L, "db2setcurrentexplainmode"); lua_pushnumber(L, sstdb2setcurrentexplainmode); lua_settable(L, -3);
lua_pushstring(L, "db2setcurrentexplainsnapshot"); lua_pushnumber(L, sstdb2setcurrentexplainsnapshot); lua_settable(L, -3);
lua_pushstring(L, "db2setcurrentisolation"); lua_pushnumber(L, sstdb2setcurrentisolation); lua_settable(L, -3);
lua_pushstring(L, "db2setcurrentlocktimeout"); lua_pushnumber(L, sstdb2setcurrentlocktimeout); lua_settable(L, -3);
lua_pushstring(L, "db2setcurrentmaintainedtabletypesforoptimization"); lua_pushnumber(L, sstdb2setcurrentmaintainedtabletypesforoptimization); lua_settable(L, -3);
lua_pushstring(L, "db2setcurrentpackagepath"); lua_pushnumber(L, sstdb2setcurrentpackagepath); lua_settable(L, -3);
lua_pushstring(L, "db2setcurrentpackageset"); lua_pushnumber(L, sstdb2setcurrentpackageset); lua_settable(L, -3);
lua_pushstring(L, "db2setcurrentqueryoptimization"); lua_pushnumber(L, sstdb2setcurrentqueryoptimization); lua_settable(L, -3);
lua_pushstring(L, "db2setcurrentrefreshage"); lua_pushnumber(L, sstdb2setcurrentrefreshage); lua_settable(L, -3);
lua_pushstring(L, "db2setencryptionpassword"); lua_pushnumber(L, sstdb2setencryptionpassword); lua_settable(L, -3);
lua_pushstring(L, "db2seteventmonitorstate"); lua_pushnumber(L, sstdb2seteventmonitorstate); lua_settable(L, -3);
lua_pushstring(L, "db2setintegrity"); lua_pushnumber(L, sstdb2setintegrity); lua_settable(L, -3);
lua_pushstring(L, "db2setpassthru"); lua_pushnumber(L, sstdb2setpassthru); lua_settable(L, -3);
lua_pushstring(L, "db2setpath"); lua_pushnumber(L, sstdb2setpath); lua_settable(L, -3);
lua_pushstring(L, "db2setschema"); lua_pushnumber(L, sstdb2setschema); lua_settable(L, -3);
lua_pushstring(L, "db2setserveroption"); lua_pushnumber(L, sstdb2setserveroption); lua_settable(L, -3);
lua_pushstring(L, "db2setsessionauthorization"); lua_pushnumber(L, sstdb2setsessionauthorization); lua_settable(L, -3);
lua_pushstring(L, "db2set"); lua_pushnumber(L, sstdb2set); lua_settable(L, -3);
lua_pushstring(L, "db2terminate"); lua_pushnumber(L, sstdb2terminate); lua_settable(L, -3);
lua_pushstring(L, "db2signal"); lua_pushnumber(L, sstdb2signal); lua_settable(L, -3);
lua_pushstring(L, "db2values"); lua_pushnumber(L, sstdb2values); lua_settable(L, -3);
lua_pushstring(L, "db2whenever"); lua_pushnumber(L, sstdb2whenever); lua_settable(L, -3);
lua_pushstring(L, "db2while"); lua_pushnumber(L, sstdb2while); lua_settable(L, -3);
lua_pushstring(L, "db2sqlvariabledeclaration"); lua_pushnumber(L, sstdb2sqlvariabledeclaration); lua_settable(L, -3);
lua_pushstring(L, "db2conditiondeclaration"); lua_pushnumber(L, sstdb2conditiondeclaration); lua_settable(L, -3);
lua_pushstring(L, "db2returncodesdeclaration"); lua_pushnumber(L, sstdb2returncodesdeclaration); lua_settable(L, -3);
lua_pushstring(L, "db2statementdeclaration"); lua_pushnumber(L, sstdb2statementdeclaration); lua_settable(L, -3);
lua_pushstring(L, "db2declarecursorstatement"); lua_pushnumber(L, sstdb2declarecursorstatement); lua_settable(L, -3);
lua_pushstring(L, "db2handlerdeclaration"); lua_pushnumber(L, sstdb2handlerdeclaration); lua_settable(L, -3);
lua_pushstring(L, "db2sqlprocedurestatement"); lua_pushnumber(L, sstdb2sqlprocedurestatement); lua_settable(L, -3);
lua_pushstring(L, "db2callstmt"); lua_pushnumber(L, sstdb2callstmt); lua_settable(L, -3);
lua_pushstring(L, "db2forstmt"); lua_pushnumber(L, sstdb2forstmt); lua_settable(L, -3);
lua_pushstring(L, "db2ifstmt"); lua_pushnumber(L, sstdb2ifstmt); lua_settable(L, -3);
lua_pushstring(L, "db2iteratestmt"); lua_pushnumber(L, sstdb2iteratestmt); lua_settable(L, -3);
lua_pushstring(L, "db2leavestmt"); lua_pushnumber(L, sstdb2leavestmt); lua_settable(L, -3);
lua_pushstring(L, "db2signalstatement"); lua_pushnumber(L, sstdb2signalstatement); lua_settable(L, -3);
lua_pushstring(L, "db2whilestmt"); lua_pushnumber(L, sstdb2whilestmt); lua_settable(L, -3);
lua_pushstring(L, "db2repeatstmt"); lua_pushnumber(L, sstdb2repeatstmt); lua_settable(L, -3);
lua_pushstring(L, "db2closecursorstmt"); lua_pushnumber(L, sstdb2closecursorstmt); lua_settable(L, -3);
lua_pushstring(L, "db2opencursorstmt"); lua_pushnumber(L, sstdb2opencursorstmt); lua_settable(L, -3);
lua_pushstring(L, "db2fetchcursorstmt"); lua_pushnumber(L, sstdb2fetchcursorstmt); lua_settable(L, -3);
lua_pushstring(L, "db2gotostmt"); lua_pushnumber(L, sstdb2gotostmt); lua_settable(L, -3);
lua_pushstring(L, "db2loopstmt"); lua_pushnumber(L, sstdb2loopstmt); lua_settable(L, -3);
lua_pushstring(L, "db2casestmt"); lua_pushnumber(L, sstdb2casestmt); lua_settable(L, -3);
lua_pushstring(L, "db2procedurecompoundstatement"); lua_pushnumber(L, sstdb2procedurecompoundstatement); lua_settable(L, -3);
lua_pushstring(L, "db2dynamiccompoundstatement"); lua_pushnumber(L, sstdb2dynamiccompoundstatement); lua_settable(L, -3);
lua_pushstring(L, "db2returnstmt"); lua_pushnumber(L, sstdb2returnstmt); lua_settable(L, -3);
assert( 600 == sstdb2returnstmt);
lua_pushstring(L, "db2dummystmt"); lua_pushnumber(L, sstdb2dummystmt); lua_settable(L, -3);
lua_pushstring(L, "db2valuesinto"); lua_pushnumber(L, sstdb2valuesinto); lua_settable(L, -3);
lua_pushstring(L, "db2stmtstub"); lua_pushnumber(L, sstdb2stmtstub); lua_settable(L, -3);
lua_pushstring(L, "db2declare"); lua_pushnumber(L, sstdb2declare); lua_settable(L, -3);
lua_pushstring(L, "plsql_assignstmt"); lua_pushnumber(L, sstplsql_assignstmt); lua_settable(L, -3);
lua_pushstring(L, "plsql_casestmt"); lua_pushnumber(L, sstplsql_casestmt); lua_settable(L, -3);
lua_pushstring(L, "plsql_closestmt"); lua_pushnumber(L, sstplsql_closestmt); lua_settable(L, -3);
lua_pushstring(L, "plsql_cursordecl"); lua_pushnumber(L, sstplsql_cursordecl); lua_settable(L, -3);
lua_pushstring(L, "plsql_dummystmt"); lua_pushnumber(L, sstplsql_dummystmt); lua_settable(L, -3);
lua_pushstring(L, "plsql_elsifstmt"); lua_pushnumber(L, sstplsql_elsifstmt); lua_settable(L, -3);
lua_pushstring(L, "plsql_execimmestmt"); lua_pushnumber(L, sstplsql_execimmestmt); lua_settable(L, -3);
lua_pushstring(L, "plsql_exitstmt"); lua_pushnumber(L, sstplsql_exitstmt); lua_settable(L, -3);
lua_pushstring(L, "plsql_fetchstmt"); lua_pushnumber(L, sstplsql_fetchstmt); lua_settable(L, -3);
lua_pushstring(L, "plsql_forallstmt"); lua_pushnumber(L, sstplsql_forallstmt); lua_settable(L, -3);
lua_pushstring(L, "plsql_gotostmt"); lua_pushnumber(L, sstplsql_gotostmt); lua_settable(L, -3);
lua_pushstring(L, "plsql_ifstmt"); lua_pushnumber(L, sstplsql_ifstmt); lua_settable(L, -3);
lua_pushstring(L, "plsql_loopstmt"); lua_pushnumber(L, sstplsql_loopstmt); lua_settable(L, -3);
lua_pushstring(L, "plsql_nullstmt"); lua_pushnumber(L, sstplsql_nullstmt); lua_settable(L, -3);
lua_pushstring(L, "plsql_openforstmt"); lua_pushnumber(L, sstplsql_openforstmt); lua_settable(L, -3);
lua_pushstring(L, "plsql_openstmt"); lua_pushnumber(L, sstplsql_openstmt); lua_settable(L, -3);
lua_pushstring(L, "plsql_pragmadecl"); lua_pushnumber(L, sstplsql_pragmadecl); lua_settable(L, -3);
lua_pushstring(L, "plsql_procbasicstmt"); lua_pushnumber(L, sstplsql_procbasicstmt); lua_settable(L, -3);
lua_pushstring(L, "plsql_procedurespec"); lua_pushnumber(L, sstplsql_procedurespec); lua_settable(L, -3);
lua_pushstring(L, "plsql_raisestmt"); lua_pushnumber(L, sstplsql_raisestmt); lua_settable(L, -3);
lua_pushstring(L, "plsql_recordtypedef"); lua_pushnumber(L, sstplsql_recordtypedef); lua_settable(L, -3);
lua_pushstring(L, "plsql_returnstmt"); lua_pushnumber(L, sstplsql_returnstmt); lua_settable(L, -3);
lua_pushstring(L, "plsql_sqlstmt"); lua_pushnumber(L, sstplsql_sqlstmt); lua_settable(L, -3);
lua_pushstring(L, "plsql_proceduredecl"); lua_pushnumber(L, sstplsql_proceduredecl); lua_settable(L, -3);
lua_pushstring(L, "plsql_vardecl"); lua_pushnumber(L, sstplsql_vardecl); lua_settable(L, -3);
lua_pushstring(L, "plsql_piperowstmt"); lua_pushnumber(L, sstplsql_piperowstmt); lua_settable(L, -3);
lua_pushstring(L, "sybaselocktable"); lua_pushnumber(L, sstsybaselocktable); lua_settable(L, -3);
lua_pushstring(L, "mdxunknown"); lua_pushnumber(L, sstmdxunknown); lua_settable(L, -3);
lua_pushstring(L, "mdxselect"); lua_pushnumber(L, sstmdxselect); lua_settable(L, -3);
lua_pushstring(L, "mdxupdate"); lua_pushnumber(L, sstmdxupdate); lua_settable(L, -3);
lua_pushstring(L, "mdxalterdimension"); lua_pushnumber(L, sstmdxalterdimension); lua_settable(L, -3);
lua_pushstring(L, "mdxcall"); lua_pushnumber(L, sstmdxcall); lua_settable(L, -3);
lua_pushstring(L, "mdxclearcalculations"); lua_pushnumber(L, sstmdxclearcalculations); lua_settable(L, -3);
lua_pushstring(L, "mdxdrillthrough"); lua_pushnumber(L, sstmdxdrillthrough); lua_settable(L, -3);
lua_pushstring(L, "mdxaltercube"); lua_pushnumber(L, sstmdxaltercube); lua_settable(L, -3);
lua_pushstring(L, "mdxcreateaction"); lua_pushnumber(L, sstmdxcreateaction); lua_settable(L, -3);
lua_pushstring(L, "mdxcreatecellcalculation"); lua_pushnumber(L, sstmdxcreatecellcalculation); lua_settable(L, -3);
lua_pushstring(L, "mdxcreatedimensionmember"); lua_pushnumber(L, sstmdxcreatedimensionmember); lua_settable(L, -3);
lua_pushstring(L, "mdxcreateglobalcube"); lua_pushnumber(L, sstmdxcreateglobalcube); lua_settable(L, -3);
lua_pushstring(L, "mdxcreatemember"); lua_pushnumber(L, sstmdxcreatemember); lua_settable(L, -3);
lua_pushstring(L, "mdxcreatesessioncube"); lua_pushnumber(L, sstmdxcreatesessioncube); lua_settable(L, -3);
lua_pushstring(L, "mdxcreateset"); lua_pushnumber(L, sstmdxcreateset); lua_settable(L, -3);
lua_pushstring(L, "mdxcreatesubcube"); lua_pushnumber(L, sstmdxcreatesubcube); lua_settable(L, -3);
lua_pushstring(L, "mdxdropaction"); lua_pushnumber(L, sstmdxdropaction); lua_settable(L, -3);
lua_pushstring(L, "mdxdropcellcalculation"); lua_pushnumber(L, sstmdxdropcellcalculation); lua_settable(L, -3);
lua_pushstring(L, "mdxdropdimensionmember"); lua_pushnumber(L, sstmdxdropdimensionmember); lua_settable(L, -3);
lua_pushstring(L, "mdxdropmember"); lua_pushnumber(L, sstmdxdropmember); lua_settable(L, -3);
lua_pushstring(L, "mdxdropset"); lua_pushnumber(L, sstmdxdropset); lua_settable(L, -3);
lua_pushstring(L, "mdxdropsubcube"); lua_pushnumber(L, sstmdxdropsubcube); lua_settable(L, -3);
lua_pushstring(L, "mdxrefreshcube"); lua_pushnumber(L, sstmdxrefreshcube); lua_settable(L, -3);
lua_pushstring(L, "mdxcalculate"); lua_pushnumber(L, sstmdxcalculate); lua_settable(L, -3);
lua_pushstring(L, "mdxcase"); lua_pushnumber(L, sstmdxcase); lua_settable(L, -3);
lua_pushstring(L, "mdxexisting"); lua_pushnumber(L, sstmdxexisting); lua_settable(L, -3);
lua_pushstring(L, "mdxfreeze"); lua_pushnumber(L, sstmdxfreeze); lua_settable(L, -3);
lua_pushstring(L, "mdxif"); lua_pushnumber(L, sstmdxif); lua_settable(L, -3);
lua_pushstring(L, "mdxscope"); lua_pushnumber(L, sstmdxscope); lua_settable(L, -3);
lua_pushstring(L, "mdxexpression"); lua_pushnumber(L, sstmdxexpression); lua_settable(L, -3);
lua_pushstring(L, "teradataabort"); lua_pushnumber(L, sstteradataabort); lua_settable(L, -3);
lua_pushstring(L, "teradataalterfunction"); lua_pushnumber(L, sstteradataalterfunction); lua_settable(L, -3);
lua_pushstring(L, "teradataaltermethod"); lua_pushnumber(L, sstteradataaltermethod); lua_settable(L, -3);
lua_pushstring(L, "teradataalterprocedure"); lua_pushnumber(L, sstteradataalterprocedure); lua_settable(L, -3);
lua_pushstring(L, "teradataalterreplicationgroup"); lua_pushnumber(L, sstteradataalterreplicationgroup); lua_settable(L, -3);
lua_pushstring(L, "teradataaltertable"); lua_pushnumber(L, sstteradataaltertable); lua_settable(L, -3);
lua_pushstring(L, "teradataaltertrigger"); lua_pushnumber(L, sstteradataaltertrigger); lua_settable(L, -3);
lua_pushstring(L, "teradataaltertype"); lua_pushnumber(L, sstteradataaltertype); lua_settable(L, -3);
lua_pushstring(L, "teradatabegindeclaresection"); lua_pushnumber(L, sstteradatabegindeclaresection); lua_settable(L, -3);
lua_pushstring(L, "teradatabeginlogging"); lua_pushnumber(L, sstteradatabeginlogging); lua_settable(L, -3);
lua_pushstring(L, "teradatabeginquerylogging"); lua_pushnumber(L, sstteradatabeginquerylogging); lua_settable(L, -3);
lua_pushstring(L, "teradatabegintransaction"); lua_pushnumber(L, sstteradatabegintransaction); lua_settable(L, -3);
lua_pushstring(L, "teradatacall"); lua_pushnumber(L, sstteradatacall); lua_settable(L, -3);
lua_pushstring(L, "teradatacheckpoint"); lua_pushnumber(L, sstteradatacheckpoint); lua_settable(L, -3);
lua_pushstring(L, "teradataclose"); lua_pushnumber(L, sstteradataclose); lua_settable(L, -3);
lua_pushstring(L, "teradatacollectdemographics"); lua_pushnumber(L, sstteradatacollectdemographics); lua_settable(L, -3);
lua_pushstring(L, "teradatacollectstatistics"); lua_pushnumber(L, sstteradatacollectstatistics); lua_settable(L, -3);
lua_pushstring(L, "teradatacomment"); lua_pushnumber(L, sstteradatacomment); lua_settable(L, -3);
lua_pushstring(L, "teradatacommit"); lua_pushnumber(L, sstteradatacommit); lua_settable(L, -3);
lua_pushstring(L, "teradataconnect"); lua_pushnumber(L, sstteradataconnect); lua_settable(L, -3);
lua_pushstring(L, "teradatacreatecast"); lua_pushnumber(L, sstteradatacreatecast); lua_settable(L, -3);
lua_pushstring(L, "teradatacreateauthorization"); lua_pushnumber(L, sstteradatacreateauthorization); lua_settable(L, -3);
lua_pushstring(L, "teradatacreatedatabase"); lua_pushnumber(L, sstteradatacreatedatabase); lua_settable(L, -3);
lua_pushstring(L, "teradatacreatefunction"); lua_pushnumber(L, sstteradatacreatefunction); lua_settable(L, -3);
lua_pushstring(L, "teradatacreateindex"); lua_pushnumber(L, sstteradatacreateindex); lua_settable(L, -3);
lua_pushstring(L, "teradatacreatemacro"); lua_pushnumber(L, sstteradatacreatemacro); lua_settable(L, -3);
lua_pushstring(L, "teradatacreatemethod"); lua_pushnumber(L, sstteradatacreatemethod); lua_settable(L, -3);
lua_pushstring(L, "teradatacreateordering"); lua_pushnumber(L, sstteradatacreateordering); lua_settable(L, -3);
lua_pushstring(L, "teradatacreateprocedure"); lua_pushnumber(L, sstteradatacreateprocedure); lua_settable(L, -3);
lua_pushstring(L, "teradatacreateprofile"); lua_pushnumber(L, sstteradatacreateprofile); lua_settable(L, -3);
lua_pushstring(L, "teradatacreatereplicationgroup"); lua_pushnumber(L, sstteradatacreatereplicationgroup); lua_settable(L, -3);
lua_pushstring(L, "teradatacreaterole"); lua_pushnumber(L, sstteradatacreaterole); lua_settable(L, -3);
lua_pushstring(L, "teradatacreatetransform"); lua_pushnumber(L, sstteradatacreatetransform); lua_settable(L, -3);
lua_pushstring(L, "teradatacreatetrigger"); lua_pushnumber(L, sstteradatacreatetrigger); lua_settable(L, -3);
lua_pushstring(L, "teradatacreatetype"); lua_pushnumber(L, sstteradatacreatetype); lua_settable(L, -3);
lua_pushstring(L, "teradatacreateuser"); lua_pushnumber(L, sstteradatacreateuser); lua_settable(L, -3);
lua_pushstring(L, "teradatadatabase"); lua_pushnumber(L, sstteradatadatabase); lua_settable(L, -3);
lua_pushstring(L, "teradatadeclarecursor"); lua_pushnumber(L, sstteradatadeclarecursor); lua_settable(L, -3);
lua_pushstring(L, "teradatadeclarestatement"); lua_pushnumber(L, sstteradatadeclarestatement); lua_settable(L, -3);
assert( 700 == sstteradatadeclarestatement);
lua_pushstring(L, "teradatadeclaretable"); lua_pushnumber(L, sstteradatadeclaretable); lua_settable(L, -3);
lua_pushstring(L, "teradatadeletedatabase"); lua_pushnumber(L, sstteradatadeletedatabase); lua_settable(L, -3);
lua_pushstring(L, "teradatadeleteuser"); lua_pushnumber(L, sstteradatadeleteuser); lua_settable(L, -3);
lua_pushstring(L, "teradatadescribe"); lua_pushnumber(L, sstteradatadescribe); lua_settable(L, -3);
lua_pushstring(L, "teradatadiagnostic"); lua_pushnumber(L, sstteradatadiagnostic); lua_settable(L, -3);
lua_pushstring(L, "teradatadropauthorization"); lua_pushnumber(L, sstteradatadropauthorization); lua_settable(L, -3);
lua_pushstring(L, "teradatadropdatabase"); lua_pushnumber(L, sstteradatadropdatabase); lua_settable(L, -3);
lua_pushstring(L, "teradatadropdbobject"); lua_pushnumber(L, sstteradatadropdbobject); lua_settable(L, -3);
lua_pushstring(L, "teradatadropfunction"); lua_pushnumber(L, sstteradatadropfunction); lua_settable(L, -3);
lua_pushstring(L, "teradatadropuser"); lua_pushnumber(L, sstteradatadropuser); lua_settable(L, -3);
lua_pushstring(L, "teradatadropcast"); lua_pushnumber(L, sstteradatadropcast); lua_settable(L, -3);
lua_pushstring(L, "teradatadropmacro"); lua_pushnumber(L, sstteradatadropmacro); lua_settable(L, -3);
lua_pushstring(L, "teradatadropordering"); lua_pushnumber(L, sstteradatadropordering); lua_settable(L, -3);
lua_pushstring(L, "teradatadropprocedure"); lua_pushnumber(L, sstteradatadropprocedure); lua_settable(L, -3);
lua_pushstring(L, "teradatadropprofile"); lua_pushnumber(L, sstteradatadropprofile); lua_settable(L, -3);
lua_pushstring(L, "teradatadropreplicationgroup"); lua_pushnumber(L, sstteradatadropreplicationgroup); lua_settable(L, -3);
lua_pushstring(L, "teradatadroprole"); lua_pushnumber(L, sstteradatadroprole); lua_settable(L, -3);
lua_pushstring(L, "teradatadropstatistics"); lua_pushnumber(L, sstteradatadropstatistics); lua_settable(L, -3);
lua_pushstring(L, "teradatadroptransform"); lua_pushnumber(L, sstteradatadroptransform); lua_settable(L, -3);
lua_pushstring(L, "teradatadroptrigger"); lua_pushnumber(L, sstteradatadroptrigger); lua_settable(L, -3);
lua_pushstring(L, "teradatadroptype"); lua_pushnumber(L, sstteradatadroptype); lua_settable(L, -3);
lua_pushstring(L, "teradatadumpexplain"); lua_pushnumber(L, sstteradatadumpexplain); lua_settable(L, -3);
lua_pushstring(L, "teradataecho"); lua_pushnumber(L, sstteradataecho); lua_settable(L, -3);
lua_pushstring(L, "teradataenddeclaresection"); lua_pushnumber(L, sstteradataenddeclaresection); lua_settable(L, -3);
lua_pushstring(L, "teradataendlogging"); lua_pushnumber(L, sstteradataendlogging); lua_settable(L, -3);
lua_pushstring(L, "teradataendquerylogging"); lua_pushnumber(L, sstteradataendquerylogging); lua_settable(L, -3);
lua_pushstring(L, "teradataendtransaction"); lua_pushnumber(L, sstteradataendtransaction); lua_settable(L, -3);
lua_pushstring(L, "teradataexecute"); lua_pushnumber(L, sstteradataexecute); lua_settable(L, -3);
lua_pushstring(L, "teradataexecuteimmediate"); lua_pushnumber(L, sstteradataexecuteimmediate); lua_settable(L, -3);
lua_pushstring(L, "teradatafetch"); lua_pushnumber(L, sstteradatafetch); lua_settable(L, -3);
lua_pushstring(L, "teradatagetcrash"); lua_pushnumber(L, sstteradatagetcrash); lua_settable(L, -3);
lua_pushstring(L, "teradatagive"); lua_pushnumber(L, sstteradatagive); lua_settable(L, -3);
lua_pushstring(L, "teradatagrant"); lua_pushnumber(L, sstteradatagrant); lua_settable(L, -3);
lua_pushstring(L, "teradatagrantlogon"); lua_pushnumber(L, sstteradatagrantlogon); lua_settable(L, -3);
lua_pushstring(L, "teradatagrantmonitor"); lua_pushnumber(L, sstteradatagrantmonitor); lua_settable(L, -3);
lua_pushstring(L, "teradatahelp"); lua_pushnumber(L, sstteradatahelp); lua_settable(L, -3);
lua_pushstring(L, "teradatainclude"); lua_pushnumber(L, sstteradatainclude); lua_settable(L, -3);
lua_pushstring(L, "teradataincludesqlca"); lua_pushnumber(L, sstteradataincludesqlca); lua_settable(L, -3);
lua_pushstring(L, "teradatasqlda"); lua_pushnumber(L, sstteradatasqlda); lua_settable(L, -3);
lua_pushstring(L, "teradatainitiateindexanalysis"); lua_pushnumber(L, sstteradatainitiateindexanalysis); lua_settable(L, -3);
lua_pushstring(L, "teradatainsertexplain"); lua_pushnumber(L, sstteradatainsertexplain); lua_settable(L, -3);
lua_pushstring(L, "teradatalogoff"); lua_pushnumber(L, sstteradatalogoff); lua_settable(L, -3);
lua_pushstring(L, "teradatalogon"); lua_pushnumber(L, sstteradatalogon); lua_settable(L, -3);
lua_pushstring(L, "teradatamodifydatabase"); lua_pushnumber(L, sstteradatamodifydatabase); lua_settable(L, -3);
lua_pushstring(L, "teradatamodifyprofile"); lua_pushnumber(L, sstteradatamodifyprofile); lua_settable(L, -3);
lua_pushstring(L, "teradatamodifyuser"); lua_pushnumber(L, sstteradatamodifyuser); lua_settable(L, -3);
lua_pushstring(L, "teradataopen"); lua_pushnumber(L, sstteradataopen); lua_settable(L, -3);
lua_pushstring(L, "teradataposition"); lua_pushnumber(L, sstteradataposition); lua_settable(L, -3);
lua_pushstring(L, "teradataprepare"); lua_pushnumber(L, sstteradataprepare); lua_settable(L, -3);
lua_pushstring(L, "teradatarenamefunction"); lua_pushnumber(L, sstteradatarenamefunction); lua_settable(L, -3);
lua_pushstring(L, "teradatarenamemacro"); lua_pushnumber(L, sstteradatarenamemacro); lua_settable(L, -3);
lua_pushstring(L, "teradatarenameprocedure"); lua_pushnumber(L, sstteradatarenameprocedure); lua_settable(L, -3);
lua_pushstring(L, "teradatarenametable"); lua_pushnumber(L, sstteradatarenametable); lua_settable(L, -3);
lua_pushstring(L, "teradatarenametrigger"); lua_pushnumber(L, sstteradatarenametrigger); lua_settable(L, -3);
lua_pushstring(L, "teradatarenameview"); lua_pushnumber(L, sstteradatarenameview); lua_settable(L, -3);
lua_pushstring(L, "teradatareplacecast"); lua_pushnumber(L, sstteradatareplacecast); lua_settable(L, -3);
lua_pushstring(L, "teradatareplacefunction"); lua_pushnumber(L, sstteradatareplacefunction); lua_settable(L, -3);
lua_pushstring(L, "teradatareplacemacro"); lua_pushnumber(L, sstteradatareplacemacro); lua_settable(L, -3);
lua_pushstring(L, "teradatareplacemethod"); lua_pushnumber(L, sstteradatareplacemethod); lua_settable(L, -3);
lua_pushstring(L, "teradatareplaceordering"); lua_pushnumber(L, sstteradatareplaceordering); lua_settable(L, -3);
lua_pushstring(L, "teradatareplaceprocedure"); lua_pushnumber(L, sstteradatareplaceprocedure); lua_settable(L, -3);
lua_pushstring(L, "teradatareplacetransform"); lua_pushnumber(L, sstteradatareplacetransform); lua_settable(L, -3);
lua_pushstring(L, "teradatareplacetrigger"); lua_pushnumber(L, sstteradatareplacetrigger); lua_settable(L, -3);
lua_pushstring(L, "teradatareplaceview"); lua_pushnumber(L, sstteradatareplaceview); lua_settable(L, -3);
lua_pushstring(L, "teradatarestartindexanalysis"); lua_pushnumber(L, sstteradatarestartindexanalysis); lua_settable(L, -3);
lua_pushstring(L, "teradatarevoke"); lua_pushnumber(L, sstteradatarevoke); lua_settable(L, -3);
lua_pushstring(L, "teradatarevokelogon"); lua_pushnumber(L, sstteradatarevokelogon); lua_settable(L, -3);
lua_pushstring(L, "teradatarevokemonitor"); lua_pushnumber(L, sstteradatarevokemonitor); lua_settable(L, -3);
lua_pushstring(L, "teradatarevokerole"); lua_pushnumber(L, sstteradatarevokerole); lua_settable(L, -3);
lua_pushstring(L, "teradatarewind"); lua_pushnumber(L, sstteradatarewind); lua_settable(L, -3);
lua_pushstring(L, "teradatarollback"); lua_pushnumber(L, sstteradatarollback); lua_settable(L, -3);
lua_pushstring(L, "teradatasetbuffersize"); lua_pushnumber(L, sstteradatasetbuffersize); lua_settable(L, -3);
lua_pushstring(L, "teradatasetcharset"); lua_pushnumber(L, sstteradatasetcharset); lua_settable(L, -3);
lua_pushstring(L, "teradatasetconnection"); lua_pushnumber(L, sstteradatasetconnection); lua_settable(L, -3);
lua_pushstring(L, "teradatasetcrash"); lua_pushnumber(L, sstteradatasetcrash); lua_settable(L, -3);
lua_pushstring(L, "teradatasetrole"); lua_pushnumber(L, sstteradatasetrole); lua_settable(L, -3);
lua_pushstring(L, "teradatasetsessionaccount"); lua_pushnumber(L, sstteradatasetsessionaccount); lua_settable(L, -3);
lua_pushstring(L, "teradatasetsession"); lua_pushnumber(L, sstteradatasetsession); lua_settable(L, -3);
lua_pushstring(L, "teradatasettimezone"); lua_pushnumber(L, sstteradatasettimezone); lua_settable(L, -3);
lua_pushstring(L, "teradatashow"); lua_pushnumber(L, sstteradatashow); lua_settable(L, -3);
lua_pushstring(L, "teradatashowfunction"); lua_pushnumber(L, sstteradatashowfunction); lua_settable(L, -3);
lua_pushstring(L, "teradatashowindex"); lua_pushnumber(L, sstteradatashowindex); lua_settable(L, -3);
lua_pushstring(L, "teradatashowmacro"); lua_pushnumber(L, sstteradatashowmacro); lua_settable(L, -3);
lua_pushstring(L, "teradatashowmethod"); lua_pushnumber(L, sstteradatashowmethod); lua_settable(L, -3);
lua_pushstring(L, "teradatashowprocedure"); lua_pushnumber(L, sstteradatashowprocedure); lua_settable(L, -3);
lua_pushstring(L, "teradatashowreplicationgroup"); lua_pushnumber(L, sstteradatashowreplicationgroup); lua_settable(L, -3);
lua_pushstring(L, "teradatashowtable"); lua_pushnumber(L, sstteradatashowtable); lua_settable(L, -3);
lua_pushstring(L, "teradatashowtrigger"); lua_pushnumber(L, sstteradatashowtrigger); lua_settable(L, -3);
lua_pushstring(L, "teradatashowtype"); lua_pushnumber(L, sstteradatashowtype); lua_settable(L, -3);
lua_pushstring(L, "teradatashowview"); lua_pushnumber(L, sstteradatashowview); lua_settable(L, -3);
lua_pushstring(L, "teradatatest"); lua_pushnumber(L, sstteradatatest); lua_settable(L, -3);
lua_pushstring(L, "teradatawait"); lua_pushnumber(L, sstteradatawait); lua_settable(L, -3);
lua_pushstring(L, "teradatawhenever"); lua_pushnumber(L, sstteradatawhenever); lua_settable(L, -3);
lua_pushstring(L, "teradataasync"); lua_pushnumber(L, sstteradataasync); lua_settable(L, -3);
lua_pushstring(L, "teradataexplain"); lua_pushnumber(L, sstteradataexplain); lua_settable(L, -3);
lua_pushstring(L, "teradatausing"); lua_pushnumber(L, sstteradatausing); lua_settable(L, -3);
lua_pushstring(L, "teradatanotimplement"); lua_pushnumber(L, sstteradatanotimplement); lua_settable(L, -3);
lua_pushstring(L, "blockstmt"); lua_pushnumber(L, sstblockstmt); lua_settable(L, -3);
lua_pushstring(L, "storedprocedurestmt"); lua_pushnumber(L, sststoredprocedurestmt); lua_settable(L, -3);
lua_pushstring(L, "oraclestoredprocedurestmt"); lua_pushnumber(L, sstoraclestoredprocedurestmt); lua_settable(L, -3);
assert( 800 == sstoraclestoredprocedurestmt);
lua_pushstring(L, "postgresqlabort"); lua_pushnumber(L, sstpostgresqlabort); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterAggregate"); lua_pushnumber(L, sstpostgresqlAlterAggregate); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterCollation"); lua_pushnumber(L, sstpostgresqlAlterCollation); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterConversion"); lua_pushnumber(L, sstpostgresqlAlterConversion); lua_settable(L, -3);
lua_pushstring(L, "postgresqlalterdatabase"); lua_pushnumber(L, sstpostgresqlalterdatabase); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterDefaultPrivileges"); lua_pushnumber(L, sstpostgresqlAlterDefaultPrivileges); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterDomain"); lua_pushnumber(L, sstpostgresqlAlterDomain); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterExtension"); lua_pushnumber(L, sstpostgresqlAlterExtension); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterForeignDataWrapper"); lua_pushnumber(L, sstpostgresqlAlterForeignDataWrapper); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterForeignTable"); lua_pushnumber(L, sstpostgresqlAlterForeignTable); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterfunction"); lua_pushnumber(L, sstpostgresqlAlterfunction); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterGroup"); lua_pushnumber(L, sstpostgresqlAlterGroup); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterIndex"); lua_pushnumber(L, sstpostgresqlAlterIndex); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterLanguage"); lua_pushnumber(L, sstpostgresqlAlterLanguage); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterLargeObject"); lua_pushnumber(L, sstpostgresqlAlterLargeObject); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterOperator"); lua_pushnumber(L, sstpostgresqlAlterOperator); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterOperatorClass"); lua_pushnumber(L, sstpostgresqlAlterOperatorClass); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterOperatorFamily"); lua_pushnumber(L, sstpostgresqlAlterOperatorFamily); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterRole"); lua_pushnumber(L, sstpostgresqlAlterRole); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterSchema"); lua_pushnumber(L, sstpostgresqlAlterSchema); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterSequence"); lua_pushnumber(L, sstpostgresqlAlterSequence); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterServer"); lua_pushnumber(L, sstpostgresqlAlterServer); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterTablespace"); lua_pushnumber(L, sstpostgresqlAlterTablespace); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterTextSearchConfiguration"); lua_pushnumber(L, sstpostgresqlAlterTextSearchConfiguration); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterTextSearchDictionary"); lua_pushnumber(L, sstpostgresqlAlterTextSearchDictionary); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterTextSearchParser"); lua_pushnumber(L, sstpostgresqlAlterTextSearchParser); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterTextSearchTemplate"); lua_pushnumber(L, sstpostgresqlAlterTextSearchTemplate); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterTrigger"); lua_pushnumber(L, sstpostgresqlAlterTrigger); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterType"); lua_pushnumber(L, sstpostgresqlAlterType); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterUser"); lua_pushnumber(L, sstpostgresqlAlterUser); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterUserMapping"); lua_pushnumber(L, sstpostgresqlAlterUserMapping); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAlterView"); lua_pushnumber(L, sstpostgresqlAlterView); lua_settable(L, -3);
lua_pushstring(L, "postgresqlAnalyze"); lua_pushnumber(L, sstpostgresqlAnalyze); lua_settable(L, -3);
lua_pushstring(L, "postgresqlBegin"); lua_pushnumber(L, sstpostgresqlBegin); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCheckpoint"); lua_pushnumber(L, sstpostgresqlCheckpoint); lua_settable(L, -3);
lua_pushstring(L, "postgresqlClose"); lua_pushnumber(L, sstpostgresqlClose); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCluster"); lua_pushnumber(L, sstpostgresqlCluster); lua_settable(L, -3);
lua_pushstring(L, "postgresqlComment"); lua_pushnumber(L, sstpostgresqlComment); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCommit"); lua_pushnumber(L, sstpostgresqlCommit); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCommitPrepared"); lua_pushnumber(L, sstpostgresqlCommitPrepared); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCopy"); lua_pushnumber(L, sstpostgresqlCopy); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateAggregate"); lua_pushnumber(L, sstpostgresqlCreateAggregate); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateCast"); lua_pushnumber(L, sstpostgresqlCreateCast); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateCollation"); lua_pushnumber(L, sstpostgresqlCreateCollation); lua_settable(L, -3);
lua_pushstring(L, "postgresqlConversion"); lua_pushnumber(L, sstpostgresqlConversion); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateDatabase"); lua_pushnumber(L, sstpostgresqlCreateDatabase); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateDomain"); lua_pushnumber(L, sstpostgresqlCreateDomain); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateExtension"); lua_pushnumber(L, sstpostgresqlCreateExtension); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateForeignDataWrapper"); lua_pushnumber(L, sstpostgresqlCreateForeignDataWrapper); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateForeignTable"); lua_pushnumber(L, sstpostgresqlCreateForeignTable); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCeateFunction"); lua_pushnumber(L, sstpostgresqlCeateFunction); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCeateGroup"); lua_pushnumber(L, sstpostgresqlCeateGroup); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateIndex"); lua_pushnumber(L, sstpostgresqlCreateIndex); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateLanguage"); lua_pushnumber(L, sstpostgresqlCreateLanguage); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateOperator"); lua_pushnumber(L, sstpostgresqlCreateOperator); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateOperatorFimaly"); lua_pushnumber(L, sstpostgresqlCreateOperatorFimaly); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateOperatorClass"); lua_pushnumber(L, sstpostgresqlCreateOperatorClass); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateRole"); lua_pushnumber(L, sstpostgresqlCreateRole); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateRule"); lua_pushnumber(L, sstpostgresqlCreateRule); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateSchema"); lua_pushnumber(L, sstpostgresqlCreateSchema); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateSequence"); lua_pushnumber(L, sstpostgresqlCreateSequence); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateServer"); lua_pushnumber(L, sstpostgresqlCreateServer); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateTablespace"); lua_pushnumber(L, sstpostgresqlCreateTablespace); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateTextSearchConfiguration"); lua_pushnumber(L, sstpostgresqlCreateTextSearchConfiguration); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateTextSearchDictionary"); lua_pushnumber(L, sstpostgresqlCreateTextSearchDictionary); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateTextSearchParser"); lua_pushnumber(L, sstpostgresqlCreateTextSearchParser); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateTextSearchTemplate"); lua_pushnumber(L, sstpostgresqlCreateTextSearchTemplate); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateTrigger"); lua_pushnumber(L, sstpostgresqlCreateTrigger); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateType"); lua_pushnumber(L, sstpostgresqlCreateType); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateUser"); lua_pushnumber(L, sstpostgresqlCreateUser); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateUserMapping"); lua_pushnumber(L, sstpostgresqlCreateUserMapping); lua_settable(L, -3);
lua_pushstring(L, "postgresqlCreateView"); lua_pushnumber(L, sstpostgresqlCreateView); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDeallocate"); lua_pushnumber(L, sstpostgresqlDeallocate); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDeclare"); lua_pushnumber(L, sstpostgresqlDeclare); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDiscard"); lua_pushnumber(L, sstpostgresqlDiscard); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDo"); lua_pushnumber(L, sstpostgresqlDo); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropAggregate"); lua_pushnumber(L, sstpostgresqlDropAggregate); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropCast"); lua_pushnumber(L, sstpostgresqlDropCast); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropCollation"); lua_pushnumber(L, sstpostgresqlDropCollation); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropConversion"); lua_pushnumber(L, sstpostgresqlDropConversion); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropDatabase"); lua_pushnumber(L, sstpostgresqlDropDatabase); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropDomain"); lua_pushnumber(L, sstpostgresqlDropDomain); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropExtension"); lua_pushnumber(L, sstpostgresqlDropExtension); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropForeignDataWrapper"); lua_pushnumber(L, sstpostgresqlDropForeignDataWrapper); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropForeignTable"); lua_pushnumber(L, sstpostgresqlDropForeignTable); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropFunction"); lua_pushnumber(L, sstpostgresqlDropFunction); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropGroup"); lua_pushnumber(L, sstpostgresqlDropGroup); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropLanguage"); lua_pushnumber(L, sstpostgresqlDropLanguage); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropOperator"); lua_pushnumber(L, sstpostgresqlDropOperator); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropOperatorClass"); lua_pushnumber(L, sstpostgresqlDropOperatorClass); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropOperatorFamily"); lua_pushnumber(L, sstpostgresqlDropOperatorFamily); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropOwned"); lua_pushnumber(L, sstpostgresqlDropOwned); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropRole"); lua_pushnumber(L, sstpostgresqlDropRole); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropRule"); lua_pushnumber(L, sstpostgresqlDropRule); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropSchema"); lua_pushnumber(L, sstpostgresqlDropSchema); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropSequence"); lua_pushnumber(L, sstpostgresqlDropSequence); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropServer"); lua_pushnumber(L, sstpostgresqlDropServer); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropTable"); lua_pushnumber(L, sstpostgresqlDropTable); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropTablespace"); lua_pushnumber(L, sstpostgresqlDropTablespace); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropTextSearchConfiguration"); lua_pushnumber(L, sstpostgresqlDropTextSearchConfiguration); lua_settable(L, -3);
assert( 900 == sstpostgresqlDropTextSearchConfiguration);
lua_pushstring(L, "postgresqlDropTextSearchDictionary"); lua_pushnumber(L, sstpostgresqlDropTextSearchDictionary); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropTextSearchParser"); lua_pushnumber(L, sstpostgresqlDropTextSearchParser); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropTextSearchTemplate"); lua_pushnumber(L, sstpostgresqlDropTextSearchTemplate); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropTrigger"); lua_pushnumber(L, sstpostgresqlDropTrigger); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropType"); lua_pushnumber(L, sstpostgresqlDropType); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropUser"); lua_pushnumber(L, sstpostgresqlDropUser); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropUserMapping"); lua_pushnumber(L, sstpostgresqlDropUserMapping); lua_settable(L, -3);
lua_pushstring(L, "postgresqlDropView"); lua_pushnumber(L, sstpostgresqlDropView); lua_settable(L, -3);
lua_pushstring(L, "postgresqlEnd"); lua_pushnumber(L, sstpostgresqlEnd); lua_settable(L, -3);
lua_pushstring(L, "postgresqlExecute"); lua_pushnumber(L, sstpostgresqlExecute); lua_settable(L, -3);
lua_pushstring(L, "postgresqlExplain"); lua_pushnumber(L, sstpostgresqlExplain); lua_settable(L, -3);
lua_pushstring(L, "postgresqlFetch"); lua_pushnumber(L, sstpostgresqlFetch); lua_settable(L, -3);
lua_pushstring(L, "postgresqlGrant"); lua_pushnumber(L, sstpostgresqlGrant); lua_settable(L, -3);
lua_pushstring(L, "postgresqlListen"); lua_pushnumber(L, sstpostgresqlListen); lua_settable(L, -3);
lua_pushstring(L, "postgresqlLoad"); lua_pushnumber(L, sstpostgresqlLoad); lua_settable(L, -3);
lua_pushstring(L, "postgresqlLock"); lua_pushnumber(L, sstpostgresqlLock); lua_settable(L, -3);
lua_pushstring(L, "postgresqlMove"); lua_pushnumber(L, sstpostgresqlMove); lua_settable(L, -3);