File tree 3 files changed +16
-2
lines changed
ydb/library/yql/parser/pg_wrapper
3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -115,3 +115,13 @@ extern "C" void yql_iterator_close(struct yql_table_iterator** iterator) {
115
115
pfree (*iterator);
116
116
*iterator = nullptr ;
117
117
}
118
+
119
+ extern " C" ui64 TouchReadTableApi () {
120
+ return
121
+ (ui64)&yql_read_table +
122
+ (ui64)&yql_iterator_error +
123
+ (ui64)&yql_iterator_has_data +
124
+ (ui64)&yql_iterator_value +
125
+ (ui64)&yql_iterator_move +
126
+ (ui64)&yql_iterator_close;
127
+ }
Original file line number Diff line number Diff line change @@ -105,9 +105,13 @@ class TExtensionsRegistry::TImpl {
105
105
TVector<std::unique_ptr<TExtension>> Extensions;
106
106
};
107
107
108
+ extern " C" ui64 TouchReadTableApi ();
109
+
108
110
TExtensionsRegistry::TExtensionsRegistry ()
109
111
: Impl_(std::make_unique<TImpl>())
110
- {}
112
+ {
113
+ Y_UNUSED (TouchReadTableApi ());
114
+ }
111
115
112
116
TExtensionsRegistry& TExtensionsRegistry::Instance () {
113
117
return *Singleton<TExtensionsRegistry>();
Original file line number Diff line number Diff line change 33
33
comp_factory.cpp
34
34
type_cache.cpp
35
35
pg_aggs.cpp
36
- GLOBAL read_table.cpp
36
+ read_table.cpp
37
37
recovery.cpp
38
38
superuser.cpp
39
39
config.cpp
You can’t perform that action at this time.
0 commit comments