diff options
-rw-r--r-- | bug/list | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -1,3 +1,17 @@ +! Add note on PG "transaction terminated after failed statement" [doc] + + For instance, the schema_catalog::migrate() logic doesn't work in case + the schema does not exist (SELECT tries to get the version, fails, and + takes down the transaction). Workaround: run schema_version() out of + transaction and then decide yourself whether to create or migrate the + schema. + +! Unsigned C++ to signed database mapping and comparison + + While ODB can roundtrip the values, comparison at the database level (e.g., + in queries will be broken). Probably need to change to use the next signed + type. Probably for 3.0.0. + ! Still need to update database/factory documentation [doc] This is related to the database return-by-value changes. |