mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-10 07:12:54 +00:00
* feat: initial commit of postgres protocol adapter * initial commit of postgres server * feat: use common_io runtime and correct testcase * fix previous tests * feat: adopt pgwire api changes and add support for text encoded data * feat: initial integration with datanode * test: add feature flag to test * fix: resolve lint warnings * feat: add postgres feature flags for datanode * feat: add support for newly introduced timestamp type * feat: adopt latest datanode changes * fix: address clippy warning for flattern scenario * fix: make clippy great again * fix: address issues found in review * chore: sort dependencies by name * feat: adopt new Output api * fix: return error on unsupported data types * refactor: extract common code dealing with record batches * fix: resolve clippy warnings * test: adds some unit tests postgres handler * test: correct test for cargo update * fix: update query module name * test: add assertion for error content
15 lines
295 B
TOML
15 lines
295 B
TOML
http_addr = '0.0.0.0:3000'
|
|
rpc_addr = '0.0.0.0:3001'
|
|
wal_dir = '/tmp/greptimedb/wal'
|
|
|
|
mysql_addr = '0.0.0.0:3306'
|
|
mysql_runtime_size = 4
|
|
|
|
# applied when postgres feature enbaled
|
|
postgres_addr = '0.0.0.0:5432'
|
|
postgres_runtime_size = 4
|
|
|
|
[storage]
|
|
type = 'File'
|
|
data_dir = '/tmp/greptimedb/data/'
|