[tracker/wip/carlosg/update-perf: 17/61] libtracker-sparql: Change hashtable key
- From: Carlos Garnacho <carlosg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [tracker/wip/carlosg/update-perf: 17/61] libtracker-sparql: Change hashtable key
- Date: Mon, 22 Aug 2022 22:07:42 +0000 (UTC)
commit ea01f751cf271c22eb3b772fb9053a6545180300
Author: Carlos Garnacho <carlosg gnome org>
Date: Sun May 22 11:15:04 2022 +0200
libtracker-sparql: Change hashtable key
Now that we pass TrackerProperty further along in operation flushing
machinery, we can use it as the key for the hashtable of already
visited properties.
src/libtracker-sparql/core/tracker-data-update.c | 13 ++++++-------
1 file changed, 6 insertions(+), 7 deletions(-)
---
diff --git a/src/libtracker-sparql/core/tracker-data-update.c
b/src/libtracker-sparql/core/tracker-data-update.c
index 7ffbd61ef..6830e1ebe 100644
--- a/src/libtracker-sparql/core/tracker-data-update.c
+++ b/src/libtracker-sparql/core/tracker-data-update.c
@@ -979,13 +979,13 @@ tracker_data_resource_buffer_flush (TrackerData *data,
g_string_append (sql, " SET ");
}
- visited_properties = g_hash_table_new (g_str_hash, g_str_equal);
+ visited_properties = g_hash_table_new (NULL, NULL);
for (n = table->properties->len - 1; n >= 0; n--) {
property = &g_array_index (table->properties,
TrackerDataUpdateBufferProperty, n);
property_name = tracker_property_get_name (property->property);
- if (g_hash_table_contains (visited_properties, property_name))
+ if (g_hash_table_contains (visited_properties, property->property))
continue;
if (table->insert) {
@@ -998,7 +998,7 @@ tracker_data_resource_buffer_flush (TrackerData *data,
g_string_append_printf (sql, "\"%s\" = ?", property_name);
}
- g_hash_table_add (visited_properties, (gpointer) property_name);
+ g_hash_table_add (visited_properties, property->property);
}
g_hash_table_unref (visited_properties);
@@ -1039,13 +1039,12 @@ tracker_data_resource_buffer_flush (TrackerData *data,
param = 0;
}
- visited_properties = g_hash_table_new (g_str_hash, g_str_equal);
+ visited_properties = g_hash_table_new (NULL, NULL);
for (n = table->properties->len - 1; n >= 0; n--) {
property = &g_array_index (table->properties,
TrackerDataUpdateBufferProperty, n);
- property_name = tracker_property_get_name (property->property);
- if (g_hash_table_contains (visited_properties, property_name))
+ if (g_hash_table_contains (visited_properties, property->property))
continue;
if (property->delete_value) {
@@ -1055,7 +1054,7 @@ tracker_data_resource_buffer_flush (TrackerData *data,
statement_bind_gvalue (stmt, ¶m, &property->value);
}
- g_hash_table_add (visited_properties, (gpointer) property_name);
+ g_hash_table_add (visited_properties, property->property);
}
g_hash_table_unref (visited_properties);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]