gitmalong
gitmalong
Hi! The [TableCreateStatement](https://docs.rs/sea-orm-migration/0.12.4/sea_orm_migration/prelude/struct.TableCreateStatement.html) does not support [creating partitioned tables](https://www.postgresql.org/docs/current/ddl-partitioning.html). 1. Create partitioned table statement ```sql CREATE TABLE measurement ( city_id int not null, logdate date not null, ) PARTITION BY...
See my comment here https://github.com/SeaQL/sea-orm/discussions/710#discussioncomment-7319840
## 💡 Feature description cargo test does not has any test progress indicator so it would be great to see nextest integrated for better dev experience. https://nexte.st/ According to the...
Such as `--nocapture` or `--test-threads=1 `. This doesn't work: * `wasm-pack test --chrome --headless -- --test-threads=1` * `wasm-pack test --chrome --headless --test-threads=1` ```bash % wasm-pack test -h 👩🔬 test your...
## Motivation Create functional indexes > for example, a common way to do case-insensitive comparisons is to use the lower function: > SELECT * FROM test1 WHERE lower(col1) = 'value';...
Relates to: * https://github.com/SeaQL/sea-orm/discussions/710#discussioncomment-7319840 * https://github.com/SeaQL/sea-orm/issues/1922 Basically I would like to let SeaQuery build a Postgres bulk insert query in the following format: ```sql insert into table(a, b) values(1, unnest(array[1,...
I'd love to see SeaQuery support [creating partitioned Postgres tables](https://www.postgresql.org/docs/current/ddl-partitioning.html). ## Motivation Partitioned Postgres tables help to scale Postgres / can drastically improve performance on large data sets. ## Proposed...
Hi! I am currently using `wasm-pack test --chrome --headless` to test my WASM app. It does not have any indicators regarding the progress of each test run and I am...
```bash lockbud % ./detect.sh toys/conflict-inter Finished dev [unoptimized + debuginfo] target(s) in 0.06s realpath: /Users/user/Documents/Code/lockbud/cargo_dir.txt: No such file or directory usage: touch [-A [-][[hh]mm]SS] [-achm] [-r file] [-t [[CC]YY]MMDDhhmm[.SS]] [-d...
cargo's default test timeout is at 60s. For consistency I suggest to set it for wasm-pack executed tests to 60s instead of 20s.