-
Hello,
Thanks for this PR https://github.com/holistics/dbml/pull/416
I've noticed the parser is not working on function like this:
```sql
CREATE FUNCTION public.myfunction() RETURNS void
…
-
数据库:postgres V8.4
示例脚本:
select (with RECURSIVE tc as (
select c.* from test_table c where c.id = cc.id
union all
select c.* from test_table c,tc where c.id = tc.parent_id
) select tc…
-
Hi team. I want to create a new syntax like `create table t(v1 int, v2 int, SORT KEY (v1))` (It is not PG Grammar, I know). It is similar to `create table t(v1 int, v2 int, PRIMARY KEY (v1))`. The p…
-
# User Description
_User did not enter any detailed information._
# Stack Trace
```
java.lang.Throwable: All stub element types should be created before index initialization is complete.
Please…
-
When trying to do a simple HTTP request with `HttpClient`, I invariable receive a `DnsException` thrown by `Amp\Dns\Rfc1035StubResolver:197`, which is part of a `MultiReasonException` containing two s…
Bilge updated
5 months ago
-
I have various versions of postgresql in my environment so i'd love to be able to choose which version of the postgres parser to parse with.
-
I noticed this while trying to use `node-postgres` with some integration tests. For the tests I needed to load in fixtures (that we normally loaded with `psql` in k8s) in test code. I read the `.sql` …
-
running pg_prove from a docker container as so
```sh
docker run -v $PWD/path/to/testdir:/t -e "PGPASSWORD=$PGPASSWORD" --network=host xenoterracide/pg_prove:latest \
pg_prove --host localhost -…
-
Not sure if this should be posted here but I'm having trouble with autoformatting "Postgres" files:
If the language mode is set to `Postgres` then this extension works, but I can't autoformat, if I…
-
Given the following Postgres SQL function:
```sql
CREATE OR REPLACE FUNCTION start_task(p_task_name VARCHAR)
RETURNS sessions AS $$
DECLARE
task_id INTEGER;
task_row RECORD;
session_rec…