Skip to content
Snippets Groups Projects
Commit df3c8566 authored by Benoît Minisini's avatar Benoît Minisini :church:
Browse files

Correctly tell if 'RETURNING' keyword is implemented.

[GB.DB.SQLITE3]
* BUG: Correctly tell if 'RETURNING' keyword is implemented.
parent 72971105
No related branches found
No related tags found
No related merge requests found
Pipeline #931126428 failed
...@@ -626,7 +626,7 @@ static int open_database(DB_DESC *desc, DB_DATABASE *db) ...@@ -626,7 +626,7 @@ static int open_database(DB_DESC *desc, DB_DATABASE *db)
/* flags */ /* flags */
db->flags.no_table_type = TRUE; db->flags.no_table_type = TRUE;
db->flags.no_nest = TRUE; db->flags.no_nest = TRUE;
db->flags.no_returning = TRUE; //db->version < 33500; // RETURNING keyword has been introduced in SQLite 3.35.0 db->flags.no_returning = db->version < 33500; // RETURNING keyword has been introduced in SQLite 3.35.0
db->db_name_char = "."; db->db_name_char = ".";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment