MaceWindu

Results 780 comments of MaceWindu

That's interesting. I can see that such form actions are supported, but not sure who and why will use them: https://www.w3.org/TR/html50/forms.html#submit-data-post Would suspect some plugin tries to replace your page...

Not sure, but maybe related to https://github.com/jquery/esprima/issues/1991

Also could be related https://github.com/jquery/esprima/pull/2049

We (linq2db orm) generate following query for update: ```sql UPDATE `world` `w` INNER JOIN ( SELECT 2887 AS `id`, 4610 AS `randomnumber` FROM DUAL UNION ALL SELECT 1935, 1451 FROM...

No, it wasn't. Last example still use `Dog` BTW, I've come here, because I've stumbled upon real openapi document which use this notation https://github.com/LandRegistry/digital-street-conveyancer-api/blob/master/src/main/resources/openapi.json#L730-L731 and expect it resolved to `#/components/schemas/`...

Well, actually this is not an issue for me - I don't use ClickHouse. I'm just implementing support for it in linq2db and report back issues, discovered during testing process....

Sure: ```cs using var cn = new ClickHouseConnection(cs); cn.Open(); using var cmd = cn.CreateCommand(); cmd.CommandText = "select * from system.tables"; using var rd = cmd.ExecuteReader(); var schema = rd.GetSchemaTable(); if...

I think you can use property types here for reference https://docs.microsoft.com/en-us/dotnet/api/system.data.datacolumn?view=net-6.0

Also filled issue for CH https://github.com/ClickHouse/ClickHouse/issues/39374 as I don't see anything wrong in provider implementation

ClickHouse inserts are synchronous by default. As I can see from client code bulk copy implementation doesn't check operation status (which is done for regular commands).