@@ -100,7 +100,7 @@ jmethodID J_Object_toString;
100
100
101
101
jclass J_DuckDBTime;
102
102
103
- jclass J_ProfilerPrintFormat;
103
+ jclass J_ProfilerPrintFormat;
104
104
jobject J_ProfilerPrintFormat_QUERY_TREE;
105
105
jobject J_ProfilerPrintFormat_JSON;
106
106
jobject J_ProfilerPrintFormat_QUERY_TREE_OPTIMIZER;
@@ -263,15 +263,17 @@ void create_refs(JNIEnv *env) {
263
263
264
264
J_ProfilerPrintFormat = make_class_ref (env, " org/duckdb/ProfilerPrintFormat" );
265
265
J_ProfilerPrintFormat_QUERY_TREE =
266
- make_static_object_field_ref (env, J_ProfilerPrintFormat, " QUERY_TREE" , " Lorg/duckdb/ProfilerPrintFormat;" );
267
- J_ProfilerPrintFormat_JSON = make_static_object_field_ref (env, J_ProfilerPrintFormat, " JSON" , " Lorg/duckdb/ProfilerPrintFormat;" );
268
- J_ProfilerPrintFormat_QUERY_TREE_OPTIMIZER =
269
- make_static_object_field_ref (env, J_ProfilerPrintFormat, " QUERY_TREE_OPTIMIZER" , " Lorg/duckdb/ProfilerPrintFormat;" );
266
+ make_static_object_field_ref (env, J_ProfilerPrintFormat, " QUERY_TREE" , " Lorg/duckdb/ProfilerPrintFormat;" );
267
+ J_ProfilerPrintFormat_JSON =
268
+ make_static_object_field_ref (env, J_ProfilerPrintFormat, " JSON" , " Lorg/duckdb/ProfilerPrintFormat;" );
269
+ J_ProfilerPrintFormat_QUERY_TREE_OPTIMIZER = make_static_object_field_ref (
270
+ env, J_ProfilerPrintFormat, " QUERY_TREE_OPTIMIZER" , " Lorg/duckdb/ProfilerPrintFormat;" );
270
271
J_ProfilerPrintFormat_NO_OUTPUT =
271
- make_static_object_field_ref (env, J_ProfilerPrintFormat, " NO_OUTPUT" , " Lorg/duckdb/ProfilerPrintFormat;" );
272
- J_ProfilerPrintFormat_HTML = make_static_object_field_ref (env, J_ProfilerPrintFormat, " HTML" , " Lorg/duckdb/ProfilerPrintFormat;" );
272
+ make_static_object_field_ref (env, J_ProfilerPrintFormat, " NO_OUTPUT" , " Lorg/duckdb/ProfilerPrintFormat;" );
273
+ J_ProfilerPrintFormat_HTML =
274
+ make_static_object_field_ref (env, J_ProfilerPrintFormat, " HTML" , " Lorg/duckdb/ProfilerPrintFormat;" );
273
275
J_ProfilerPrintFormat_GRAPHVIZ =
274
- make_static_object_field_ref (env, J_ProfilerPrintFormat, " GRAPHVIZ" , " Lorg/duckdb/ProfilerPrintFormat;" );
276
+ make_static_object_field_ref (env, J_ProfilerPrintFormat, " GRAPHVIZ" , " Lorg/duckdb/ProfilerPrintFormat;" );
275
277
}
276
278
277
279
void delete_global_refs (JNIEnv *env) noexcept {
0 commit comments