Friedrich Lindenberg
2de3e0b84c
Correct the query documentation. Fixes #357 , fixes #353 .
2021-01-17 12:45:29 +01:00
Friedrich Lindenberg
97d67e397d
Bump version: 1.4.2 → 1.4.3
2020-12-30 22:33:06 +01:00
Friedrich Lindenberg
2cce18dfb6
Clean up a bit
2020-12-30 22:28:12 +01:00
Friedrich Lindenberg
8325f855af
Revamp the documentation
2020-12-30 22:16:10 +01:00
Friedrich Lindenberg
02d3d0333f
Support disabling auto-increment on primary keys, fixes #351 .
2020-12-29 20:03:45 +01:00
Friedrich Lindenberg
2b1947e407
radically simplify upsert_many; refs #352 .
2020-12-29 19:34:37 +01:00
Friedrich Lindenberg
5e09aba401
Remove flush_tables, fixes #356 .
2020-12-29 18:39:44 +01:00
Friedrich Lindenberg
846b5f200a
Bump version: 1.4.1 → 1.4.2
2020-11-19 13:15:03 +01:00
Friedrich Lindenberg
3a931b7b5b
Bump version: 1.4.0 → 1.4.1
2020-11-14 23:02:17 +01:00
Friedrich Lindenberg
69d68a5455
bumpversion mess-up
2020-11-14 23:02:06 +01:00
Friedrich Lindenberg
e82618cf4e
Bump version: 1.3.2 → 1.4.0
2020-11-14 22:58:02 +01:00
Friedrich Lindenberg
2a6a6c1e22
Remove unused arguments, fixes #343 .
2020-11-14 22:51:05 +01:00
Friedrich Lindenberg
de68e2ba2b
Re-org a little bit :)
2020-11-14 22:48:56 +01:00
Friedrich Lindenberg
ee39cfb148
Merge pull request #346 from kapily/sqlite_wal_mode
...
If the database is SQLite, enable WAL
2020-11-14 22:37:20 +01:00
Kapil Yedidi
ae3a30da19
Added WAL by default for SQLite databases
2020-10-15 10:41:58 -07:00
Friedrich Lindenberg
68a8ad8c2b
Merge pull request #339 from Remalloc/master
...
Add missing method "upsert_many" in Table api doc
2020-09-01 08:57:27 +02:00
remalloc.virtual@gmail.com
f81ed66732
Add missing method "upsert_many" in Table api doc
2020-09-01 12:25:27 +08:00
Friedrich Lindenberg
c8b94131e3
Merge pull request #338 from tatsuya4559/fix/remove_freeze
...
Removed freeze from __all__ listing
2020-08-30 11:33:05 +02:00
tatsuya4559
5d6a840740
removed freeze from __all__ listing.
2020-08-30 08:40:02 +09:00
Friedrich Lindenberg
14db5e00e6
Merge pull request #336 from pudo/fix-ci
...
Fix CI use of Postgres and MySQL
2020-08-23 13:54:17 +02:00
Friedrich Lindenberg
e9c8b11102
wat
2020-08-23 13:48:01 +02:00
Friedrich Lindenberg
f4b9e754d8
Test against mysql
2020-08-23 13:45:30 +02:00
Friedrich Lindenberg
3479e5ba35
Try and shut up MySQL about index length. Weird.
2020-08-23 13:35:48 +02:00
Friedrich Lindenberg
4034a12f62
Get rid of the flush statement, but I'm not sure this has no side effects
2020-08-23 12:30:30 +02:00
Friedrich Lindenberg
3fe0ae10aa
Seems it was that lock.
2020-08-23 12:23:00 +02:00
Friedrich Lindenberg
28109d6826
Minor fixes
2020-08-23 12:10:10 +02:00
Friedrich Lindenberg
a17f2c8d5c
Apply black
2020-08-02 12:52:11 +02:00
Friedrich Lindenberg
eb4abcbe42
Try localhost
2020-06-29 08:33:54 +02:00
Friedrich Lindenberg
2d215bb44a
Try and get the pipeline right
2020-06-29 08:33:50 +02:00
Friedrich Lindenberg
6469ad5c42
Use default DB more
2020-06-29 08:33:41 +02:00
Friedrich Lindenberg
07ef8d22c1
Remove duplicate function
2020-06-28 21:09:09 +02:00
Friedrich Lindenberg
37c0f87d10
Adopt banal for utility functions
2020-06-28 18:58:00 +02:00
Friedrich Lindenberg
8dede2b757
Bump version: 1.3.1 → 1.3.2
2020-06-28 15:51:21 +02:00
Friedrich Lindenberg
439e14f421
Remove table from db cache, fixes #329 .
2020-06-28 15:47:48 +02:00
Friedrich Lindenberg
17fffe78c2
Create tables only when ensure_schema=True. Fixes #330 .
2020-06-28 15:44:42 +02:00
Friedrich Lindenberg
2637254bcf
Catch closed RP, fixes #334 .
2020-06-28 15:02:20 +02:00
Friedrich Lindenberg
0c46d9eead
Bump version: 1.3.0 → 1.3.1
2020-04-06 23:10:26 +02:00
Friedrich Lindenberg
9cbdb3772c
A bit of cleanup
2020-04-06 22:56:35 +02:00
Friedrich Lindenberg
507b0a5a40
Merge pull request #321 from benfasoli/master
...
Adds support for JSON and JSONB columns
2020-04-06 22:44:48 +02:00
Friedrich Lindenberg
7cc0740bc0
Fix lint
2020-04-06 22:38:28 +02:00
Friedrich Lindenberg
38a5ad9b83
Merge pull request #323 from byron10000/master
...
Add two clauses which are 'startswith' and 'enswith'
2020-04-06 15:34:12 +02:00
byron10000
412b80f13c
add two clauses which are 'startswith' and 'enswith'
2020-04-06 10:26:16 +08:00
Ben Fasoli
7fee6da44d
Adds support for JSONB in PostgresQL
...
Passes dialect to instances of `Types` for vendor-specific type mappings.
2020-03-25 20:29:58 -07:00
Ben Fasoli
aeaab50043
Adds support to serialize dict as JSON
...
There are likely some vendor-specific enhancements (such as `JSONB` in PostgreSQL) but the current method of type guessing doesn't know anything about the underlying database.
2020-03-25 19:35:36 -07:00
Ben Fasoli
d51fcb604f
Replace cls argument with self
...
Not sure if this was originally intended to be a `@classmethod` but it's now written and called as a method bound to an instance of the class.
2020-03-25 18:51:56 -07:00
Friedrich Lindenberg
0a32b89c01
Bump version: 1.2.3 → 1.3.0
2020-03-15 14:07:19 +01:00
Friedrich Lindenberg
2677bc04c6
Add lint, remove travis
2020-03-15 13:54:34 +01:00
Friedrich Lindenberg
5212bcb787
Try to be clever about service ports
2020-03-15 13:44:43 +01:00
Friedrich Lindenberg
c0177a850f
Add MariaDB
2020-03-15 13:40:06 +01:00
Friedrich Lindenberg
dd286b33da
Add postgresql
2020-03-15 13:29:39 +01:00