]> saetta.ns0.it Git - libgdaex/commitdiff
Bugfix SqlBuilder: no table name if functions ::from* not called before others.
authorAndrea Zagli <azagli@libero.it>
Fri, 4 Oct 2019 13:54:00 +0000 (15:54 +0200)
committerAndrea Zagli <azagli@libero.it>
Fri, 4 Oct 2019 13:54:00 +0000 (15:54 +0200)
src/sqlbuilder.c

index 3360b5c1d0a8fb8d19307c33c897c81a03b6933d..9ac5314c3c7fcd25edb3d7d3387dc25dc31aa20d 100644 (file)
@@ -143,7 +143,7 @@ static GdaExSqlBuilderField
                                }
                        else
                                {
-                                       f->alias = NULL;
+                                       f->alias = g_strdup ("");
                                }
                        g_hash_table_insert (table->ht_fields, g_strdup (field_name), f);
                }
@@ -185,7 +185,7 @@ static GdaExSqlBuilderTable
                                }
                        else
                                {
-                                       t->alias = NULL;
+                                       t->alias = g_strdup ("");
                                }
                        t->ht_fields = g_hash_table_new (g_str_hash, g_str_equal);
                        g_hash_table_insert (priv->ht_tables, g_strdup (t->name), t);