doltgresql icon indicating copy to clipboard operation
doltgresql copied to clipboard

DoltgreSQL - Version Controlled PostgreSQL

Results 28 doltgresql issues
Sort by recently updated
recently updated
newest added

Doltgresql does not yet support PostgreSQL's JDBC connection I can only connect to the doltgresql database after setting assumeMinServerVersion=15. But after connecting to the doltgresql database, I cannot execute any...

:coffee: *An Automated Dependency Version Bump PR* :crown: ### Initial Changes The changes contained in this PR were produced by \`go get\`ing the dependency. \`\`\` \$ go get github.com/dolthub//go@ \`\`\`

dolt-bump

This PR fixes issue connecting to doltgres server using Postgres JDBC driver. In [Postgres docs](https://www.postgresql.org/docs/current/protocol-flow.html), it says, "`Execute` doesn't cause ReadyForQuery or RowDescription to be issued." Also, queries that don't...

Also changes expected errors to match an error string. Not all tests are passing yet.

In attempting to get a "Hello, World" working from R, I run `doltgres` from bash, then in R I run: ```r library(DBI) library(RPostgres) con

bug

Postgres has no concept of autocommit. Any statement that takes place outside of an explicit transaction is automatically committed. Effectively: autocommit is always on in Postgres. This means it must...

GMS PR: https://github.com/dolthub/go-mysql-server/pull/2471 Dolt PR: https://github.com/dolthub/dolt/pull/7779

This occurs when a config.yaml file contains `max_connections` param: ``` listener: max_connections: 100 ``` Workaround is not include this line in config.yaml.