Rene Saarsoo
Rene Saarsoo
On first glance I though that this would be a useful hook to access the HTML `` element on which the engine runs. Even [the documentation](https://github.com/brianzinn/react-babylonjs/blob/master/packages/react-babylonjs/docs/hooks/modules/engine.md#usecanvas) says: ``` /** *...
I have the following simple component that creates a scene with a cube and a gizmomanager: ```jsx export function Area3D() { return ( ); } ``` And then inside my...
### Reproduction example ```ts import { describe, expect, it } from "vitest"; import userEvent from "@testing-library/user-event"; describe("my test", () => { it("should pass", () => { console.log(userEvent.setup); userEvent.setup(); //
### Search before asking - [x] I searched the [issues](https://github.com/sqlfluff/sqlfluff/issues) and found no similar issues. ### What Happened I gave the following code to SQL Fluff: ```sql create table foo...
### Search before asking - [x] I searched the [issues](https://github.com/sqlfluff/sqlfluff/issues) and found no similar issues. ### What Happened I gave the following code to SQL Fluff: ```sql CREATE TYPE foo...
Currently results in: ```sql DROP TABLE table1, table2; ``` Works work like DROP VIEW: ```sql DROP VIEW foo, bar; ```
The following fails to parse: ```sql UPDATE my_table SET my_col[2] = 3.0760; ``` From [PostgreSQL docs](https://www.postgresql.org/docs/current/sql-update.html): > The column name can be qualified with a subfield name or array subscript,...
- [x] [CREATE PUBLICATION](https://www.postgresql.org/docs/current/sql-createpublication.html) - [x] `name` - [x] `FOR ALL TABLES` - [x] `FOR ALL SEQUENCES` (in latest dev version) - [x] `FOR publication_object [, ... ]` where `publication_object`...
### Foreign servers - [ ] [CREATE SERVER](https://www.postgresql.org/docs/18/sql-createserver.html) - [ ] `IF NOT EXISTS` - [ ] `server_name` - [ ] `TYPE 'server_type'` - [ ] `VERSION 'server_version'` - [...
See: https://cloud.google.com/bigquery/docs/reference/standard-sql/pipe-syntax In summary, the pipe syntax allows expressing the following SQL: ```sql SELECT item, COUNT(*) AS num_items, SUM(sales) AS total_sales FROM Produce WHERE item != 'bananas' AND category IN...