aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/parser/pg_wrapper/vars.txt
blob: 687b413ac803d2c0cb245a59320d132ace488024 (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
ATExecSetRelOptions.validnsps
AbortStartTime
ActivePortal
ActiveSnapshot
AnonymousShmem
AnonymousShmemSize
Ap
ApplyContext
ApplyMessageContext
ArchiveCallbacks
ArchiveRecoveryRequested
Array_nulls
AttoptCacheHash
AuthenticatedUserId
AuthenticatedUserIsSuperuser
AuthenticationTimeout
AutoVacPID
AutoVacuumShmem
AutovacMemCxt
AutovacuumLauncherPid
AuxProcessResourceOwner
AuxiliaryProcs
BackendActivityBuffer
BackendActivityBufferSize
BackendAppnameBuffer
BackendClientHostnameBuffer
BackendList
BackendSslStatusBuffer
BackendStatusArray
BackendWritebackContext
BackgroundWorkerData
BackgroundWorkerList
BaseBackupTargetTypeList
BgBufferSync.next_passes
BgBufferSync.next_to_clean
BgBufferSync.prev_strategy_buf_id
BgBufferSync.prev_strategy_passes
BgBufferSync.saved_info_valid
BgBufferSync.smoothed_alloc
BgBufferSync.smoothed_density
BgWriterDelay
BgWriterPID
BufferBlocks
BufferDescriptors
BufferIOCVArray
CFuncHash
CacheHdr
CacheInitialized
CacheMemoryContext
CatalogSnapshot
CatalogSnapshotData
CheckClientConnectionPending
CheckPointCompletionTarget
CheckPointDistanceEstimate
CheckPointLoc
CheckPointSegments
CheckPointTLI
CheckPointTimeout
CheckPointWarning
CheckXidAlive
CheckpointStats
CheckpointWriteDelay.absorb_counter
CheckpointerPID
CheckpointerShmem
CkptBufferIds
ClientAuthInProgress
ClientAuthentication_hook
ClientConnectionLost
ClientEncoding
CommitDelay
CommitSiblings
CommitTsCtlData
ComputeXidHorizonsResultLastXmin
ConfigFileLineno
ConfigFileName
ConfigReloadPending
ConfigureNamesBool
ConfigureNamesEnum
ConfigureNamesInt
ConfigureNamesReal
ConfigureNamesString
ControlFile
ConvProcList
CreateNewPortal.unnamed_portal_count
CritSectionCount
CurTransactionContext
CurTransactionResourceOwner
CurrentDynaHashCxt
CurrentExtensionObject
CurrentLCTimeValid
CurrentLocaleConvValid
CurrentMemoryContext
CurrentResourceOwner
CurrentSession
CurrentSnapshot
CurrentSnapshotData
CurrentTransactionState
CurrentUserId
DCHCache
DCHCounter
DataDir
DatabaseEncoding
DatabaseList
DatabaseListCxt
DatabasePath
DateOrder
DateStyle
Db_user_namespace
DeadlockTimeout
Debug_pretty_print
Debug_print_parse
Debug_print_plan
Debug_print_rewritten
DefaultXactDeferrable
DefaultXactIsoLevel
DefaultXactReadOnly
DefineRelation.validnsps
DoingCommandRead
Dynamic_library_path
EOXactTupleDescArray
EOXactTupleDescArrayLen
EchoQuery
EnableHotStandby
EnableSSL
ErrorContext
EventTriggerCache
EventTriggerCacheContext
EventTriggerCacheState
ExecutorCheckPerms_hook
ExecutorEnd_hook
ExecutorFinish_hook
ExecutorRun_hook
ExecutorStart_hook
ExitOnAnyError
ExplainOneQuery_hook
ExportInProgress
FastPathLocalUseCount
FastPathStrongRelationLocks
FatalError
FeBeWaitSet
FetchTableStates.has_subrels
FileSetInit.counter
FinishedSerializableTransactions
FirstCallSinceLastCheckpoint.ckpt_done
FirstSnapshotSet
FirstXactSnapshot
FrontendProtocol
GUCMemoryContext
GUCNestLevel
GUC_check_errcode_value
GUC_check_errdetail_string
GUC_check_errhint_string
GUC_check_errmsg_string
GUC_flex_fatal_errmsg
GUC_flex_fatal_jmp
GUC_yy_flex_debug
GUC_yyin
GUC_yyleng
GUC_yylineno
GUC_yyout
GUC_yytext
Geqo_effort
Geqo_generations
Geqo_pool_size
Geqo_seed
Geqo_selection_bias
GetBackgroundWorkerTypeByPid.result
GetConfigOption.buffer
GetConfigOptionResetString.buffer
GetConflictingVirtualXIDs.vxids
GetCurrentTimeUsec.cache_fsec
GetCurrentTimeUsec.cache_timezone
GetCurrentTimeUsec.cache_tm
GetCurrentTimeUsec.cache_ts
GetCurrentTimeUsec.cache_tz
GetLocalBufferStorage.LocalBufferContext
GetLocalBufferStorage.cur_block
GetLocalBufferStorage.next_buf_in_block
GetLocalBufferStorage.num_bufs_in_block
GetLocalBufferStorage.total_bufs_allocated
GetLockConflicts.vxids
GetPgClassDescriptor.pgclassdesc
GetPgIndexDescriptor.pgindexdesc
GetRunningTransactionData.CurrentRunningXactsData
GetSQLCurrentDate.cache_date
GetSQLCurrentDate.cache_mday
GetSQLCurrentDate.cache_mon
GetSQLCurrentDate.cache_year
GetStableLatestTransactionId.lxid
GetStableLatestTransactionId.stablexid
GetXLogBuffer.cachedPage
GetXLogBuffer.cachedPos
GinFuzzySearchLimit
GlobalVisCatalogRels
GlobalVisDataRels
GlobalVisSharedRels
GlobalVisTempRels
HandleParallelApplyMessages.hpam_context
HandleParallelMessages.hpm_context
HaveCrashedWorker
HbaFileName
HistoricSnapshot
ILHead
IdentFileName
IdleInTransactionSessionTimeout
IdleInTransactionSessionTimeoutPending
IdleSessionTimeout
IdleSessionTimeoutPending
IdleStatsUpdateTimeoutPending
IgnoreSystemIndexes
InArchiveRecovery
InRecovery
InRedo
InitializingApplyWorker
InitializingParallelWorker
InterruptHoldoffCount
InterruptPending
IntervalStyle
InvalMessageArrays
IsBackgroundWorker
IsBinaryUpgrade
IsPostmasterEnvironment
IsUnderPostmaster
KnownAssignedXids
KnownAssignedXidsCompress.lastCompressTs
KnownAssignedXidsCompress.transactionEndsCounter
KnownAssignedXidsValid
LWLockTrancheNames
LWLockTrancheNamesAllocated
LatchWaitSet
ListenAddresses
ListenSocket
LoadedSSL
LocalBufHash
LocalBufferBlockPointers
LocalBufferDescriptors
LocalHotStandbyActive
LocalLatchData
LocalMinRecoveryPoint
LocalMinRecoveryPointTLI
LocalPredicateLockHash
LocalPromoteIsTriggered
LocalRecoveryInProgress
LocalRefCount
LocalXLogInsertAllowed
LockMethodLocalHash
LockMethodLockHash
LockMethodProcLockHash
LockTimeout
LogMemoryContextPending
LogRepWorkerWalRcvConn
Log_RotationAge
Log_RotationSize
Log_autovacuum_min_duration
Log_connections
Log_destination
Log_destination_string
Log_directory
Log_disconnections
Log_error_verbosity
Log_file_mode
Log_filename
Log_line_prefix
Log_truncate_on_rotation
Logging_collector
LogicalRepCtx
LogicalRepPartMap
LogicalRepPartMapContext
LogicalRepRelMap
LogicalRepRelMapContext
LogicalStreamingContext
LogstreamResult
LogwrtResult
MXactCache
MXactContext
MainLWLockArray
MaxBackends
MaxConnections
MdCxt
MergeAttributes.bogus_marker
MessageContext
MessageEncoding
Mode
MultiXactMemberCtlData
MultiXactOffsetCtlData
MultiXactState
MyAuxProcType
MyBEEntry
MyBackendId
MyBackendType
MyBgworkerEntry
MyCancelKey
MyClientConnectionInfo
MyDatabaseId
MyDatabaseTableSpace
MyFixedParallelState
MyLatch
MyLockNo
MyLockedGxact
MyLogicalRepWorker
MyPMChildSlot
MyParallelShared
MyProc
MyProcPid
MyProcPort
MyProcSignalSlot
MyReplicationSlot
MySerializableXact
MyStartTime
MyStartTimestamp
MySubscription
MySubscriptionValid
MyTriggerDepth
MyWalSnd
MyWorkerInfo
MyXactDidWrite
MyXactFlags
NBuffers
NLocBuffer
NLocalPinnedBuffers
NUMCache
NUMCounter
NamedLWLockTrancheArray
NamedLWLockTrancheRequestArray
NamedLWLockTrancheRequests
NamedLWLockTrancheRequestsAllocated
NextEOXactTupleDescNum
NextRecordTypmod
None_Receiver
NotifyCtlData
Nulls
OldCommittedSxact
OldestActiveSnapshot
OldestMemberMXactId
OldestVisibleMXactId
OpClassCache
OprCacheHash
OprProofCacheHash
OuterUserId
OutputFileName
PGLC_localeconv.CurrentLocaleConv
PGLC_localeconv.CurrentLocaleConvAllocated
PG_exception_stack
PMChildInUse
PMSignalState
PageSetChecksumCopy.pageCopy
ParallelApplyMessagePending
ParallelApplyTxnHash
ParallelApplyWorkerPool
ParallelCurrentXids
ParallelLeaderBackendId
ParallelLeaderPid
ParallelMessagePending
ParallelWorkerNumber
Password_encryption
PendingBgWriterStats
PendingCheckpointerStats
PendingIOStats
PendingWalStats
PgArch
PgArchCanRestart.last_pgarch_start_time
PgArchPID
PgReloadTime
PgStartTime
PinCountWaitBuf
PortalContext
PortalHashTable
PostAuthDelay
PostPortNumber
PostmasterContext
PostmasterPid
PqCommBusy
PqCommMethods
PqCommReadingMsg
PqRecvBuffer
PqRecvLength
PqRecvPointer
PqSendBuffer
PqSendBufferSize
PqSendPointer
PqSendStart
PreAuthDelay
PredXact
PredicateLockHash
PredicateLockTargetHash
PreparedXactProcs
PrevCheckPointDistance
PrimaryConnInfo
PrimarySlotName
PrivateRefCountArray
PrivateRefCountClock
PrivateRefCountHash
PrivateRefCountOverflowed
ProcDiePending
ProcGlobal
ProcLastRecPtr
ProcSignal
ProcSignalBarrierPending
ProcStructLock
ProcessStandbyReplyMessage.fullyAppliedLastTime
ProcessSyncRequests.sync_in_progress
ProcessUtilitySlow.validnsps
ProcessUtility_hook
QueryCancelHoldoffCount
QueryCancelPending
RWConflictPool
ReachedNormalRunning
ReadControlFile.wal_segsz_str
ReceiveSharedInvalidMessages.messages
ReceiveSharedInvalidMessages.nextmsg
ReceiveSharedInvalidMessages.nummsgs
RecentXmin
RecordCacheArray
RecordCacheArrayLen
RecordCacheHash
RecoveryConflictPending
RecoveryConflictReason
RecoveryConflictRetryable
RecoveryLockHash
RecoveryLockXidHash
RedoRecPtr
RedoStartLSN
RedoStartTLI
RegexpCacheMemoryContext
RegisterBackgroundWorker.numworkers
RegisteredSnapshots
RelationIdCache
RelfilenumberMapHash
ReplicationSlotCtl
ReservedConnections
ReservedRefCountEntry
ResourceRelease_callbacks
RmgrTable
SMgrRelationHash
SPI_processed
SPI_result
SPI_result_code_string.buf
SPI_tuptable
SSLCipherSuites
SSLECDHCurve
SSLPreferServerCiphers
SSL_context
SSL_initialized
SSLerrmessage.errbuf
Save_r
Save_t
SavedResourceOwnerDuringExport
SavedSerializableXact
ScratchPartitionLock
ScratchTargetTagHash
SecondarySnapshot
SecondarySnapshotData
SecurityRestrictionContext
SerialSlruCtlData
SerializableXidHash
SessionReplicationRole
SessionUserId
SessionUserIsSuperuser
SetRoleIsActive
SharedBufHash
SharedInvalidMessageCounter
SharedStats
ShmemBase
ShmemEnd
ShmemIndex
ShmemLock
ShmemSegHdr
ShmemVariableCache
Shutdown
ShutdownRequestPending
SizeVfdCache
SnapshotAnyData
SnapshotSelfData
StandbyMode
StandbyModeRequested
StartWorkerNeeded
StartupPID
StartupStatus
StatementTimeout
StoreAttrDefault.nulls
StrategyControl
StrongLockInProgress
SubTransCtlData
SubXact_callbacks
SuperuserReservedConnections
SyncRepConfig
SyncRepStandbyNames
SyncRepWaitMode
SysAtt
SysCache
SysCacheRelationOid
SysCacheRelationOidSize
SysCacheSupportingRelOid
SysCacheSupportingRelOidSize
SysLoggerPID
SystemUser
TSConfigCacheHash
TSCurrentConfig
TSCurrentConfigCache
TSDictionaryCacheHash
TSParserCacheHash
TableSpaceCacheHash
ToClientConvProc
ToServerConvProc
TopMemoryContext
TopPortalContext
TopTransactionContext
TopTransactionResourceOwner
TopTransactionStateData
Trace_notify
TransactionAbortContext
TransactionIdIsInProgress.other_xids
TransactionIdIsInProgress.xids
TransactionXmin
Transform_null_equals
TwoPhaseGetGXact.cached_gxact
TwoPhaseGetGXact.cached_xid
TwoPhaseState
Typ
TypeCacheHash
Unix_socket_directories
Unix_socket_group
Unix_socket_permissions
UsableBytesInSegment
UseSemiNewlineNewline
UsedShmemSegAddr
UsedShmemSegID
Utf8ToServerConvProc
VacuumActiveNWorkers
VacuumBufferUsageLimit
VacuumCostActive
VacuumCostBalance
VacuumCostBalanceLocal
VacuumCostDelay
VacuumCostLimit
VacuumCostPageDirty
VacuumCostPageHit
VacuumCostPageMiss
VacuumFailsafeActive
VacuumPageDirty
VacuumPageHit
VacuumPageMiss
VacuumSharedCostBalance
VfdCache
VoidString
WALInsertLockAcquire.lockToTry
WALInsertLocks
WaitForWALToBecomeAvailable.last_fail_time
WalRcv
WalReceiverFunctions
WalReceiverPID
WalReceiverRequested
WalSndCaughtUp
WalSndCtl
WalSndUpdateProgress.sendTime
WalSndWaitForWal.RecentFlushPtr
WalWriterDelay
WalWriterFlushAfter
WalWriterPID
XLOGbuffers
XLogArchiveCommand
XLogArchiveLibrary
XLogArchiveMode
XLogArchiveTimeout
XLogBackgroundFlush.lastflush
XLogCtl
XLogPrefetchReconfigureCount
XLogPrefetcherAllocate.hash_table_ctl
XLogReceiptSource
XLogReceiptTime
XLogRecoveryCtl
XLogSendLogical.flushPtr
XLogWalRcvSendHSFeedback.primary_has_standby_xmin
XLogWalRcvSendReply.flushPtr
XLogWalRcvSendReply.writePtr
XactCtlData
XactDeferrable
XactIsoLevel
XactLastCommitEnd
XactLastRecEnd
XactReadOnly
XactTopFullTransactionId
Xact_callbacks
_SPI_connected
_SPI_current
_SPI_stack
_SPI_stack_depth
abbrevcache
abortedRecPtr
acos_0_5
activeCreationNamespace
activePathGeneration
activeSearchPath
activeTempCreationPending
active_local_updates
active_shared_updates
active_timeouts
addWrd.nres
addWrd.ntres
add_reloption.max_custom_options
afterConstraints
afterTriggers
alarm_enabled
allProcs
all_timeouts
all_timeouts_initialized
allocatedDescs
allowSystemTableMods
allow_in_place_tablespaces
amRegisteredListener
am_autovacuum_launcher
am_autovacuum_worker
am_cascading_walsender
am_db_walsender
am_walsender
anl_context
announce_next_takeover
application_name
apply_error_callback_arg
apply_error_context_stack
arch_files
archiveCleanupCommand
archive_module_state
array_extra_data
asin_0_5
assert_enabled
asyncQueueControl
atan_1_0
atexit_callback_setup
attrtypes
autovacuum_anl_scale
autovacuum_anl_thresh
autovacuum_freeze_max_age
autovacuum_max_workers
autovacuum_multixact_freeze_max_age
autovacuum_naptime
autovacuum_start_daemon
autovacuum_vac_cost_delay
autovacuum_vac_cost_limit
autovacuum_vac_ins_scale
autovacuum_vac_ins_thresh
autovacuum_vac_scale
autovacuum_vac_thresh
autovacuum_work_mem
av_storage_param_cost_delay
av_storage_param_cost_limit
avlauncher_needs_signal
awaitedLock
awaitedOwner
backendStatusSnapContext
backend_flush_after
backend_startup_complete
backtrace_functions
backtrace_symbol_list
backupEndPoint
backupEndRequired
backupStartPoint
backup_started_in_recovery
backup_state
backupcontext
baseCreationNamespace
baseSearchPath
baseSearchPathValid
baseTempCreationPending
base_yyparse.yyloc_default
base_yyparse.yyval_default
beforeConstraints
before_shmem_exit_index
before_shmem_exit_list
begininsert_called
bgwriter_flush_after
bgwriter_lru_maxpages
bgwriter_lru_multiplier
binary_upgrade_next_array_pg_type_oid
binary_upgrade_next_heap_pg_class_oid
binary_upgrade_next_heap_pg_class_relfilenumber
binary_upgrade_next_index_pg_class_oid
binary_upgrade_next_index_pg_class_relfilenumber
binary_upgrade_next_mrng_array_pg_type_oid
binary_upgrade_next_mrng_pg_type_oid
binary_upgrade_next_pg_authid_oid
binary_upgrade_next_pg_enum_oid
binary_upgrade_next_pg_tablespace_oid
binary_upgrade_next_pg_type_oid
binary_upgrade_next_toast_pg_class_oid
binary_upgrade_next_toast_pg_class_relfilenumber
binary_upgrade_record_init_privs
block_size
blocking_autovacuum_proc
bonjour_name
boot_reldesc
boot_yy_flex_debug
boot_yychar
boot_yyin
boot_yyleng
boot_yylineno
boot_yylval
boot_yynerrs
boot_yyout
boot_yytext
bootstrap_data_checksum_version
bsysscan
btvacinfo
buffer_lists
builtin_backup_targets
bytea_output
bytesToHex.hex
cachedCommitLSN
cachedFetchXid
cachedFetchXidStatus
cachedXidIsNotInProgress
cached_db_hash
cached_expression_list
cached_role
cached_roles
catchupInterruptPending
cert_errdetail
check_function_bodies
check_password_hook
check_wal_consistency_checking_deferred
checkpoint_cycle_ctr
checkpoint_flush_after
ckpt_active
ckpt_cached_elapsed
ckpt_start_recptr
ckpt_start_time
client_connection_check_interval
client_encoding_string
client_min_messages
cluster_name
collation_cache
comboCids
comboHash
commitTsShared
compute_query_id
connsAllowed
constraint_exclusion
context_freelists
cookies
cookies_size
copybuf
cot_45
cpu_index_tuple_cost
cpu_operator_cost
cpu_tuple_cost
create_ctas_internal.validnsps
create_upper_paths_hook
createrole_self_grant
createrole_self_grant_enabled
createrole_self_grant_options
creating_extension
criticalRelcachesBuilt
criticalSharedRelcachesBuilt
csvlogFile
curConstraints
curFileTLI
curinsert_flags
currentCommandId
currentCommandIdUsed
currentEventTriggerState
currentSource
currentSubTransactionId
currentlyReindexedHeap
currentlyReindexedIndex
cursor_tuple_fraction
custom_options
custom_scan_methods
cv_sleep_target
dataExecPlaceToPageInternal.data
data_checksums
data_directory
data_directory_mode
data_sync_retry
database_ctype_is_c
datecache
datestyle_string
deadlockDetails
deadlock_state
debug_discard_caches
debug_io_direct_string
debug_logical_replication_streaming
debug_parallel_query
debug_query_string
default_freeze_min_age
default_freeze_table_age
default_locale
default_multixact_freeze_min_age
default_multixact_freeze_table_age
default_statistics_target
default_table_access_method
default_tablespace
default_toast_compression
default_with_oids
degree_c_forty_five
degree_c_one
degree_c_one_half
degree_c_sixty
degree_c_thirty
degree_consts_set
deltacache
disable_cost
dispatch_table
doPageWrites
doRequestWalReceiverReply
doing_extended_query_message
drandom_seed
drandom_seed_set
dsm_control
dsm_control_handle
dsm_control_impl_private
dsm_control_mapped_size
dsm_init_done
dsm_main_space_begin
dsm_segment_list
dummy_spinlock
dummy_ssl_passwd_cb_called
dynamic_shared_memory_type
effective_cache_size
effective_io_concurrency
emit_log_hook
emode_for_corrupt_record.lastComplaint
enableFsync
enable_async_append
enable_bitmapscan
enable_bonjour
enable_gathermerge
enable_geqo
enable_hashagg
enable_hashjoin
enable_incremental_sort
enable_indexonlyscan
enable_indexscan
enable_material
enable_memoize
enable_mergejoin
enable_nestloop
enable_parallel_append
enable_parallel_hash
enable_partition_pruning
enable_partitionwise_aggregate
enable_partitionwise_join
enable_presorted_aggregate
enable_seqscan
enable_sort
enable_tidscan
entryExecPlaceToPage.data
eoxact_list
eoxact_list_len
eoxact_list_overflowed
error_context_stack
errordata
errordata_stack_depth
event_source
executeDateTimeMethod.fmt_str
executeDateTimeMethod.fmt_txt
expectedTLEs
explain_get_index_name_hook
exportedSnapshots
extensible_node_methods
external_pid_file
extra_float_digits
file_list
file_tail
find_rendezvous_variable.rendezvousHash
firstDomainTypeEntry
first_syslogger_file_time
flushedUpto
fmgr_hook
forceSyncCommit
force_stats_snapshot_clear
formatted_log_time
formatted_start_time
from_collapse_limit
fscxt
fullPageWrites
geqo_threshold
getWeights.ws
get_attavgwidth_hook
get_code_decomposition.x
get_config_unit_name.bbuf
get_config_unit_name.xbuf
get_index_stats_hook
get_object_property_data.prop_last
get_relation_info_hook
get_relation_stats_hook
get_stack_depth_rlimit.val
gin_pending_list_limit
gistGetFakeLSN.counter
gistGetFakeLSN.lastlsn
gmtsub.gmtptr
got_SIGHUP
got_SIGUSR2
got_STOPPING
got_deadlock_timeout
got_standby_deadlock_timeout
got_standby_delay_timeout
got_standby_lock_timeout
guc_hashtab
guc_nondef_list
guc_report_list
guc_stack_list
hash_mem_multiplier
have_iostats
have_slrustats
have_xact_temporary_files
hdr_rdt
hdr_scratch
held_lwlocks
hist_entries
hist_start
holdingAllLocks
hot_standby_feedback
huge_page_size
huge_pages
icu_converter
icu_validation_level
ignore_checksum_failure
ignore_invalid_pages
ignore_till_sync
in_hot_standby_guc
in_progress_list
in_progress_list_len
in_progress_list_maxlen
in_remote_transaction
in_restore_command
in_streamed_transaction
incoming_message
integer_datetimes
internal_flush.last_reported_send_errno
invalid_page_tab
io_direct_flags
jit_above_cost
jit_debugging_support
jit_dump_bitcode
jit_enabled
jit_expressions
jit_inline_above_cost
jit_optimize_above_cost
jit_profiling_support
jit_provider
jit_tuple_deforming
join_collapse_limit
join_search_hook
jsonlogFile
jsonpath_yy_flex_debug
jsonpath_yyin
jsonpath_yyleng
jsonpath_yylineno
jsonpath_yyout
jsonpath_yyparse.yyval_default
jsonpath_yytext
label_provider_list
lag_tracker
lastFullPageWrites
lastSourceFailed
lastUsedConfig
lastUsedDictionary
lastUsedParser
last_assigned_kind
last_checkpoint_time
last_csv_file_name
last_json_file_name
last_processing
last_reply_timestamp
last_roleid
last_roleid_is_super
last_sigterm_time
last_snapshot_lsn
last_snapshot_ts
last_start_times
last_start_times_dsa
last_status_len
last_sys_file_name
last_used_seq
last_xlog_switch_time
latestObservedXid
lc_collate_is_c.result
lc_ctype_is_c.result
listenChannels
litbuf
lo_cleanup_needed
lo_compat_privileges
lo_heap_r
lo_index_r
localBackendStatusTable
localNumBackends
local_map
local_my_wait_event_info
local_preload_libraries_string
locale_messages
locale_monetary
locale_numeric
locale_time
localized_abbrev_days
localized_abbrev_months
localized_full_days
localized_full_months
lockAwaited
lock_files
log_btree_build_stats
log_checkpoints
log_duration
log_executor_stats
log_hostname
log_lock_waits
log_min_duration_sample
log_min_duration_statement
log_min_error_statement
log_min_messages
log_parameter_max_length
log_parameter_max_length_on_error
log_parser_stats
log_planner_stats
log_recovery_conflict_waits
log_replication_commands
log_startup_progress_interval
log_statement
log_statement_sample_rate
log_statement_stats
log_status_format.log_line_number
log_status_format.log_my_pid
log_temp_files
log_timezone
log_timezone_string
log_xact_sample_rate
logical_decoding_ctx
logical_decoding_work_mem
logicalrep_message_type.err_unknown
lsn_mapping
mainrdata_head
mainrdata_last
mainrdata_len
maintenance_io_concurrency
maintenance_work_mem
make_greater_string.suffixchar
make_greater_string.suffixcollation
matview_maintenance_depth
maxAllocatedDescs
maxCurConstraints
maxPossibleConstraints
maxSems
max_files_per_process
max_function_args
max_identifier_length
max_index_keys
max_locks_per_xact
max_logical_replication_workers
max_parallel_apply_workers_per_subscription
max_parallel_maintenance_workers
max_parallel_workers
max_parallel_workers_per_gather
max_predicate_locks_per_page
max_predicate_locks_per_relation
max_predicate_locks_per_xact
max_prepared_xacts
max_rdatas
max_registered_block_id
max_registered_buffers
max_replication_slots
max_safe_fds
max_slot_wal_keep_size_mb
max_stack_depth
max_stack_depth_bytes
max_standby_archive_delay
max_standby_streaming_delay
max_sync_workers_per_subscription
max_wal_senders
max_wal_size_mb
max_worker_processes
memory_units_hint
minRecoveryPoint
minRecoveryPointTLI
min_dynamic_shared_memory
min_parallel_index_scan_size
min_parallel_table_scan_size
min_wal_size_mb
missingContrecPtr
missing_cache
mxid_to_string.str
myTempNamespace
myTempNamespaceSubID
myTempToastNamespace
my_bio_methods
my_exec_path
my_wait_event_info
nCurConstraints
nDeadlockDetails
nParallelCurrentXids
nPossibleConstraints
nUnreportedXids
nVisitedProcs
nWaitOrders
n_DCHCache
n_NUMCache
namespaceUser
namespace_search_path
need_initialization
needs_fmgr_hook
newNodeMacroHolder
nextFreeLocalBufId
nextLocalTransactionId
nextSemKey
nextTempTableSpace
next_child_inuse
next_rotation_time
nfile
nogc
notifyInterruptPending
noverify_checksums
numAllocatedDescs
numExternalFDs
numSems
numTempTableSpaces
num_active_timeouts
num_child_inuse
num_columns_read
num_custom_options
num_held_lwlocks
num_rdatas
num_res
num_seq_scans
num_temp_buffers
num_word.buf
numattr
object_access_hook
object_access_hook_str
oldSnapshotControl
old_snapshot_threshold
oldrs
oldrs_initialized
on_commit_launcher_wakeup
on_commit_wakeup_workers_subids
on_commits
on_proc_exit_index
on_proc_exit_list
on_shmem_exit_index
on_shmem_exit_list
one_minus_cos_60
opCtx
openLogFile
openLogSegNo
openLogTLI
openlog_done
openssl_tls_init_hook
outbuf_maxlen
output_message
overrideStack
parallel_leader_participation
parallel_setup_cost
parallel_stream_nchanges
parallel_tuple_cost
parsed_hba_context
parsed_hba_lines
parsed_ident_context
parsed_ident_lines
pcxt_list
pendingActions
pendingDeletes
pendingNotifies
pendingOps
pendingOpsCxt
pendingReindexedIndexes
pendingSyncHash
pendingUnlinks
pendingWalRcvRestart
pending_SLRUStats
pending_client_encoding
pending_local_updates
pending_pm_child_exit
pending_pm_fast_shutdown_request
pending_pm_immediate_shutdown_request
pending_pm_pmsignal
pending_pm_reload_request
pending_pm_shutdown_request
pending_shared_updates
per_line_ctx
pgBufferUsage
pgLastSessionReportTime
pgStatActiveTime
pgStatBlockReadTime
pgStatBlockWriteTime
pgStatEntryRefHash
pgStatEntryRefHashContext
pgStatForceNextFlush
pgStatLocal
pgStatPending
pgStatPendingContext
pgStatSessionEndCause
pgStatSharedRefAge
pgStatSharedRefContext
pgStatTransactionIdleTime
pgStatXactCommit
pgStatXactRollback
pgStatXactStack
pgWalUsage
pg_TZDIR.done_tzdir
pg_TZDIR.tzdir
pg_comp_crc32c
pg_ctype_cache_list
pg_dir_create_mode
pg_file_create_mode
pg_flush_data.not_implemented_by_kernel
pg_flush_data.pagesize
pg_global_prng_state
pg_gss_accept_delegation
pg_krb_caseins_users
pg_krb_server_keyfile
pg_mode_mask
pg_perm_setlocale.save_lc_ctype
pg_popcount32
pg_popcount64
pg_regex_collation
pg_regex_locale
pg_regex_strategy
pg_rusage_show.result
pg_strerror.errorstr_buf
pg_strtok_ptr
pg_xml_init_library.first_time
pgstat_fetch_consistency
pgstat_report_stat.last_flush
pgstat_report_stat.pending_since
pgstat_track_activities
pgstat_track_activity_query_size
pgstat_track_counts
pgstat_track_functions
phony_random_seed
pipe_eof_seen
pkglib_path
plan_cache_mode
plan_getrulebyoid
plan_getviewrule
planner_hook
pmState
pm_wait_set
possibleConstraints
post_parse_analyze_hook
postmaster_alive_fds
postmaster_possibly_dead
pq_mq_busy
pq_mq_handle
pq_mq_parallel_leader_backend_id
pq_mq_parallel_leader_pid
prepareGID
prepared_queries
prevWalUsage
primary_image_masked
procArray
proc_exit_inprogress
process_shared_preload_libraries_done
process_shared_preload_libraries_in_progress
process_shmem_requests_in_progress
process_syncing_tables_for_apply.last_start_times
promote_signaled
provider
provider_failed_loading
provider_successfully_loaded
ps_buffer
ps_buffer_cur_len
ps_buffer_fixed_size
ps_buffer_nosuffix_len
ps_buffer_size
query_getrulebyoid
query_getviewrule
query_id_enabled
quote_all_identifiers
random_page_cost
rdatas
re_array
reachedConsistency
readFile
readLen
readOff
readSegNo
readSource
ready_to_stop
receiveTLI
recentMulti
recentXid
records
recoveryEndCommand
recoveryRestoreCommand
recoveryStopAfter
recoveryStopLSN
recoveryStopName
recoveryStopTime
recoveryStopXid
recoveryTarget
recoveryTargetAction
recoveryTargetInclusive
recoveryTargetLSN
recoveryTargetName
recoveryTargetTLI
recoveryTargetTLIRequested
recoveryTargetTime
recoveryTargetTimeLineGoal
recoveryTargetXid
recovery_init_sync_method
recovery_min_apply_delay
recovery_prefetch
recovery_signal_file_found
recovery_target_lsn_string
recovery_target_name_string
recovery_target_string
recovery_target_time_string
recovery_target_timeline_string
recovery_target_xid_string
recursion_depth
recursive_worktable_factor
recvFile
recvFileTLI
recvSegNo
redirection_done
register_persistent_abort_backup_handler.already_done
registered_buffers
reindexingNestLevel
relOpts
relcacheInvalsReceived
relcache_callback_count
relcache_callback_list
relfilenumber_skey
remote_final_lsn
remove_temp_files_after_crash
repl_pushed_back_token
replay_image_masked
replication_active
replication_parse_result
replication_states
replication_states_ctl
replication_yy_flex_debug
replication_yychar
replication_yyin
replication_yyleng
replication_yylineno
replication_yylval
replication_yynerrs
replication_yyout
replication_yytext
replorigin_session_origin
replorigin_session_origin_lsn
replorigin_session_origin_timestamp
replorigin_session_setup.registered_cleanup
reply_message
reporting_enabled
reserved_class_prefix
restart_after_crash
reverse_dispatch_table
ri_compare_cache
ri_constraint_cache
ri_constraint_cache_valid_list
ri_query_cache
role_string
roleid_callback_registered
rotation_disabled
rotation_requested
row_description_buf
row_description_context
row_security
row_security_policy_hook_permissive
row_security_policy_hook_restrictive
sanitize_char.buf
sanitize_str.buf
save_argc
save_argv
save_format_domain
save_format_errnumber
save_pgBufferUsage
save_pgWalUsage
saved_plan_list
saved_timeval
saved_timeval_set
scan_locations
scanbuf
scanbufhandle
scanbuflen
scanstring
scram_mock_salt.sha_digest
scram_sha_256_iterations
segment_size
selfpipe_owner_pid
selfpipe_readfd
selfpipe_writefd
sendTimeLine
sendTimeLineIsHistoric
sendTimeLineNextTLI
sendTimeLineValidUpto
send_abort_for_crash
send_abort_for_kill
send_feedback.last_flushpos
send_feedback.last_recvpos
send_feedback.last_writepos
send_feedback.reply_message
send_feedback.send_time
sentPtr
seq_page_cost
seq_scan_level
seq_scan_tables
seqhashtab
serialControl
server_encoding_string
server_version_num
server_version_string
sessionBackupState
session_auth_is_superuser
session_authorization_string
session_preload_libraries_string
session_replication_state
session_timezone
set_join_pathlist_hook
set_rel_pathlist_hook
sharedSemas
shared_map
shared_memory_size_in_huge_pages
shared_memory_size_mb
shared_memory_type
shared_preload_libraries_string
shmInvalBuffer
shmem_exit_inprogress
shmem_request_hook
shmem_startup_hook
show_data_directory_mode.buf
show_log_file_mode.buf
show_tcp_keepalives_count.nbuf
show_tcp_keepalives_idle.nbuf
show_tcp_keepalives_interval.nbuf
show_tcp_user_timeout.nbuf
show_unix_socket_permissions.buf
shutdown_requested
signal_due_at
signal_pending
sin_30
sizeComboCids
skip_xact_finish_lsn
slru_errcause
slru_errno
sock_paths
speculativeInsertionToken
spins_per_delay
ssl_ca_file
ssl_cert_file
ssl_crl_dir
ssl_crl_file
ssl_dh_params_file
ssl_is_server_start
ssl_key_file
ssl_library
ssl_loaded_verify_locations
ssl_max_protocol_version
ssl_min_protocol_version
ssl_passphrase_command
ssl_passphrase_command_supports_reload
ssl_renegotiation_limit
stack_base_ptr
standbySnapshotPendingXmin
standbyState
standbyWait_us
standby_signal_file_found
start_autovac_launcher
startup_progress_phase_start_time
startup_progress_timer_expired
stmtStartTimestamp
str_time.buf
stream_apply_worker
stream_fd
stream_xid
streamingDoneReceiving
streamingDoneSending
subxact_data
subxactlist
sync_cycle_ctr
sync_method
synchronize_seqscans
synchronous_commit
syncrep_parse_error_msg
syncrep_parse_result
syncrep_yy_flex_debug
syncrep_yychar
syncrep_yyin
syncrep_yyleng
syncrep_yylineno
syncrep_yylval
syncrep_yynerrs
syncrep_yyout
syncrep_yytext
syscache_callback_count
syscache_callback_links
syscache_callback_list
syslogFile
syslogPipe
syslog_facility
syslog_ident
syslog_ident_str
syslog_sequence_numbers
syslog_split_messages
table_states_not_ready
table_states_validity
tablespace_map
tan_45
tcp_keepalives_count
tcp_keepalives_idle
tcp_keepalives_interval
tcp_user_timeout
tempFileCounter
tempTableSpaces
temp_file_limit
temp_tablespaces
temporary_files_size
time_units_hint
timestamptz_to_str.buf
timezone_abbreviations_string
timezone_cache
timezone_string
tm
tmpbuf
tokenize_context
topoProcs
total_addin_request
total_checksum_failures
total_func_time
trace_recovery_messages
trace_sort
track_commit_timestamp
track_io_timing
track_wal_io_timing
transInvalInfo
tryAdvanceTail
tuplecid_data
tupledesc_id_counter
twophaseExitRegistered
uncommitted_enums
unlistenExitRegistered
unnamed_stmt_psrc
unowned_relns
unpack_sql_state.buf
unreportedXids
updateMinRecoveryPoint
update_process_title
usedComboCids
userDoption
vac_strategy
vacuum.in_vacuum
vacuum_cost_delay
vacuum_cost_limit
vacuum_failsafe_age
vacuum_freeze_min_age
vacuum_freeze_table_age
vacuum_multixact_failsafe_age
vacuum_multixact_freeze_min_age
vacuum_multixact_freeze_table_age
values
visitedProcs
waitOrderProcs
waitOrders
waiting
waiting_for_ping_response
wake_wal_senders
wakeup
wal_block_size
wal_compression
wal_consistency_checking
wal_consistency_checking_string
wal_decode_buffer_size
wal_init_zero
wal_keep_size_mb
wal_level
wal_log_hints
wal_receiver_create_temp_slot
wal_receiver_status_interval
wal_receiver_timeout
wal_recycle
wal_retrieve_retry_interval
wal_segment_size
wal_sender_timeout
wal_skip_threshold
whereToSendOutput
work_mem
wrconn
write_csvlog.log_line_number
write_csvlog.log_my_pid
write_jsonlog.log_line_number
write_jsonlog.log_my_pid
write_syslog.seq
xactStartTimestamp
xactStopTimestamp
xact_is_sampled
xact_started
xdbuf
xloginsert_cxt
xlogprefetcher
xlogreader
xmlbinary
xmloption
yy_buffer_stack
yy_buffer_stack_max
yy_buffer_stack_top
yy_c_buf_p
yy_did_buffer_switch_on_eof
yy_flex_debug
yy_hold_char
yy_init
yy_last_accepting_cpos
yy_last_accepting_state
yy_n_chars
yy_start
yy_start_state_list
yychar
yyin
yyleng
yyline
yylineno
yynerrs
yyout
yytext
zero_damaged_pages
zoneabbrevtbl