Magnus Hauge Bakke

Results 18 comments of Magnus Hauge Bakke

How about putting nickname and status in the top-left corner, with the Glowing Bear-logo and unread count?

I think @torhve is on to something. I would suggest putting "Settings" and "Disconnect" in the top-left corner. All global stuff could go here, including nick and away-status from issue...

@taylorotwell Yes, that is probably best. Since "lateral" is not a join type, and should be placed after the "join" keyword, it might be necessary with an extra property in...

@crissi Postgres and MySQL does not support right lateral join neither (it would make no sense). My mistake. Removing it from the PR now. I will look into translating it...

I have moved "lateral" and "on true" translation into the grammar layer now, and added support for SQL server. I have tested `joinLateral` with PostgreSQL 16, MySQL 8 and SQL...

> Just wanna chime in because MariaDB [hasn't added support for lateral join yet](https://jira.mariadb.org/plugins/servlet/mobile#issue/MDEV-19078). And Laravel considers MySQL and MariaDB as same RDBMS under `mysql` driver. I know. MariaDB uses...

@staudenmeir Good tip! I will checkout this package in detail and draw some inspiration from there. - I agree that `joinSubLateral` etc. are more consistent. I will change the method...

@staudenmeir I am looking into custom join constraints (`on a.foo = b.bar`). SQL servers `cross apply` / `outer apply` don't support this, so these constraints will cause an error (or...

@tpetry I am leaning against dropping the join conditions then, to keep it simple and consistent across different SQL implementations. We have three choices to not break your current implementation...