AgufaGit
AgufaGit
$this also doesn't work
Postgresql has partial indexes (conditional unique index) feature, [link here](https://www.postgresql.org/docs/current/indexes-partial.html). But if it's too much trouble, then forget about it, obviously it's not high priority, but a nice-to-have in version...
Current update is convenient, it acts like update or create, if it exists, update, if it doesn't, create, very convenient in some cases. 'EXISTING' keyword is a bit long, prefer...
```sql DEFINE ANALYZER name TOKENIZERS class FILTERS lowercase,ngram(1,128); DEFINE ANALYZER userdefinedid TOKENIZERS blank FILTERS lowercase,ngram(1,32); DEFINE INDEX account_name_search_idx ON TABLE account COLUMNS name SEARCH ANALYZER name BM25 HIGHLIGHTS; DEFINE INDEX...
these commands not working for me, i'm using antivirus program norton 360, but wsa is "allowed" in norton 360 firewall settings
found a workaround suppose you are using adb, and want app to use localhost port 8080 after calling `adb connect ip:port` to wsa call `adb reverse tcp:8080 tcp:8080` afterwards then...
you can do multiple ports, but only 1 port at a time, etc. `adb reverse tcp:80 tcp:80` `adb reverse tcp:8080 tcp:8080` `adb reverse --list` but port doesn't matter in development,...
That workaround is mainly for developer for simple environment setup, but it doesn't work with docker. Docker will give "address already in use" error, whereas if you start the server...
not only docker, it's any service/server that checks if address is already in use before binding to that port. There can't be any service/server listening to that port before calling...
let me rewrite this query ```sql select 1 from [{id: 1}] WHERE array::len(SELECT true FROM 1 WHERE (IF 1=1 then $parent.id=1 else false end)) > 0 ``` `SELECT true FROM...