transactions
Here are 445 public repositories matching this topic...
-
Updated
May 27, 2022 - JavaScript
This feature includes following sub-features:
- add Store.Db, default "dtm"
- remove Store.TransGlobalTable Store.TransBranchOpTable
When box.cfg.listen is set to a port number (without specifying a host name), Tarantool binds to one address, ipv4 or ipv6:
box.cfg{listen = 3301}$ nc -vvz 127.0.0.1 3301
Connection to 127.0.0.1 3301 port [tcp/*] succeeded!
$ nc -vvz ::1 3301
nc: connect to ::1 port 3301 (tcp) failed: Connection refused
This is confusing - one would expect it to bind to all av
-
Updated
May 13, 2022 - Elixir
-
Updated
May 28, 2022 - Java
-
Updated
Apr 6, 2020 - TypeScript
-
Updated
May 15, 2022 - Vue
Currently, only query errors retain their type in the API response.
If other Torii errors do as well instead of being stringified, the client can restore the error response to torii::Error or an equivalent type.
This allows for more reliable error handling
-
Updated
Apr 29, 2022 - JavaScript
-
Updated
Dec 11, 2021 - Rust
-
Updated
Apr 30, 2022 - Python
-
Updated
Nov 28, 2021 - C++
-
Updated
Oct 13, 2018 - Java
-
Updated
Apr 5, 2022 - Ruby
-
Updated
May 6, 2022 - Python
-
Updated
Apr 27, 2022 - PHP
-
Updated
May 27, 2022 - Elixir
-
Updated
Jul 21, 2021 - JavaScript
-
Updated
Dec 15, 2021 - JavaScript
-
Updated
May 28, 2022 - Java
-
Updated
Jan 12, 2022 - C#
-
Updated
Oct 2, 2021 - JavaScript
-
Updated
Jun 27, 2021 - C++
Improve this page
Add a description, image, and links to the transactions topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the transactions topic, visit your repo's landing page and select "manage topics."
https://github.com/sequelize/sequelize/blob/8a1429d6044123bba3a3f312b2e0c74b0c829990/lib/model.js#L1271
If I create any model with
charset: 'utf8mb4', collate: 'utf8mb4_general_ci'sequelize translates it to this for mysql
CREATE TABLE IF NOT EXISTStablename... ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8mb4_general_ci;On stepping through the code, it seems that the issu