-libgdaex (0.6.0-1~4.gbpe808c6) UNRELEASED; urgency=medium
+libgdaex (0.6.0-1~5.gbpfde38a) UNRELEASED; urgency=medium
- ** SNAPSHOT build @e808c62e9a87fa572fae05f500ca543545a39d72 **
+ ** SNAPSHOT build @fde38a03e518da41ada16d77a17e46b92b79e693 **
[ Andrea Zagli ]
* Initial release
[ tux ]
- -- tux <tux@develop64.example.tst> Sat, 24 Jun 2017 08:52:57 +0200
+ [ Andrea Zagli ]
+ * Updates from upstream (enabled gir and gtk-doc).
+ * Setted version 0.7.0.
+ * Added functions GdaEx::metastore_update, ::metastore_get_tables and ::metastore_get_table_fields.
+ * Use of right functions to manipulate GdaMetacontext.
+ * Show field type and size in metastore test.
+ * Typo.
+ * Possible bug in libga gda_connection_get_meta_store_data_v.
+ * Added tool to export tables to csv.
+ * In ::save_data_file_in_blob value could be freed by GdaHolder.
+ * In ::save_data_file_in_blob removed g_value_unset.
+ * Wrong hashtable in get_sql_from_hashtable for GDAEX_SQL_DELETE.
+ * Fixed test getsqlfromhashtable for date and time.
+ * Added GdaEx::double_to_sql.
+ * Added function GdaExSqlBuilder::where_int.
+ * Added function GdaExSqlBuilder::where_string.
+ * Added function GdaExSqlBuilder::where_boolean.
+ * Added function GdaExSqlBuilder::where_float.
+ * Added functions GdaExSqlBuilder::field_*.
+ * Bugfix SqlBuilder: no table name if functions ::from* not called before others.
+
+ -- tux <tux@develop64.example.tst> Wed, 23 Oct 2019 10:57:43 +0200
--- /dev/null
+diff --git a/src/gdaex.c b/src/gdaex.c
+index 3463659..695d2a3 100644
+--- a/src/gdaex.c
++++ b/src/gdaex.c
+@@ -3795,7 +3795,7 @@ GdaDataModel
+
+ GError *error;
+
+- GdaMetaContext *mcontext;
++ GdaMetaContext mcontext = {"_tables", 0, NULL, NULL};
+
+ GdaExPrivate *priv = GDAEX_GET_PRIVATE (gdaex);
+
+@@ -3804,12 +3804,7 @@ GdaDataModel
+
+ if (update_meta_store)
+ {
+- mcontext = gda_meta_context_new ();
+-
+- gda_meta_context_set_table (mcontext, "_tables");
+- gdaex_meta_store_update (gdaex, mcontext);
+-
+- gda_meta_context_free (mcontext);
++ gdaex_meta_store_update (gdaex, &mcontext);
+ }
+
+ error = NULL;
+@@ -3836,7 +3831,7 @@ GdaDataModel
+ GError *error;
+ GValue *gval;
+
+- GdaMetaContext *mcontext;
++ GdaMetaContext mcontext = {"_columns", 1, NULL, NULL};;
+
+ GdaExPrivate *priv = GDAEX_GET_PRIVATE (gdaex);
+
+@@ -3844,18 +3839,14 @@ GdaDataModel
+
+ if (update_meta_store)
+ {
+- mcontext = gda_meta_context_new ();
+-
+- gda_meta_context_set_table (mcontext, "_columns");
+-
+- gval = gda_value_new (G_TYPE_STRING);
+- g_value_set_string (gval, table_name);
+- gda_meta_context_set_column (mcontext, "table_name", gval, priv->gda_conn);
+-
+- gdaex_meta_store_update (gdaex, mcontext);
++ mcontext.column_names = g_new (gchar *, 1);
++ mcontext.column_names[0] = "table_name";
++ mcontext.column_values = g_new (GValue *, 1);
++ mcontext.column_values[0] = gda_value_new (G_TYPE_STRING);
++ g_value_take_string (mcontext.column_values[0],
++ gda_sql_identifier_quote (table_name, priv->gda_conn, NULL, FALSE, FALSE));
+
+- gda_value_free (gval);
+- gda_meta_context_free (mcontext);
++ gdaex_meta_store_update (gdaex, &mcontext);
+ }
+
+ /* possibile libgda bug: varchar length is always 0 */