Skip to content

Commit 76ea9c8

Browse files
committed
support RisingWave
1 parent 856ea12 commit 76ea9c8

21 files changed

+1295
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
SOURCE ?= file go_bindata github github_ee bitbucket aws_s3 google_cloud_storage godoc_vfs gitlab
2-
DATABASE ?= postgres mysql redshift cassandra spanner cockroachdb yugabytedb clickhouse mongodb sqlserver firebird neo4j pgx pgx5
2+
DATABASE ?= postgres mysql redshift cassandra spanner cockroachdb yugabytedb clickhouse mongodb sqlserver firebird neo4j pgx pgx5 risingwave
33
DATABASE_TEST ?= $(DATABASE) sqlite sqlite3 sqlcipher
44
VERSION ?= $(shell git describe --tags 2>/dev/null | cut -c 2-)
55
TEST_FLAGS ?=

database/risingwave/README.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# RisingWave
2+
3+
`risingwave://user:password@host:port/dbname?query`
4+
5+
| URL Query | WithInstance Config | Description |
6+
|------------|---------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
7+
| `x-migrations-table` | `MigrationsTable` | Name of the migrations table |
8+
| `x-migrations-table-quoted` | `MigrationsTableQuoted` | By default, migrate quotes the migration table for SQL injection safety reasons. This option disable quoting and naively checks that you have quoted the migration table name. e.g. `"my_schema"."schema_migrations"` |
9+
| `x-statement-timeout` | `StatementTimeout` | Abort any statement that takes more than the specified number of milliseconds |
10+
| `dbname` | `DatabaseName` | The name of the database to connect to |
11+
| `user` | | The user to sign in as |
12+
| `password` | | The user's password |
13+
| `host` | | The host to connect to. Values that start with / are for unix domain sockets. (default is localhost) |
14+
| `port` | | The port to bind to. (default is 4566) |
15+
| `connect_timeout` | | Maximum wait for connection, in seconds. Zero or not specified means wait indefinitely. |
16+
| `sslcert` | | Cert file location. The file must contain PEM encoded data. |
17+
| `sslkey` | | Key file location. The file must contain PEM encoded data. |
18+
| `sslrootcert` | | The location of the root certificate file. The file must contain PEM encoded data. |
19+
| `sslmode` | | Whether or not to use SSL (disable\|require\|verify-ca\|verify-full) |
20+
21+
RisingWave is PostgreSQL compatible but has some specific features (or lack thereof) that require slightly different behavior.
22+
23+
## Notes
24+
25+
* RisingWave does not support transaction yet. When running multiple SQL statements in one migration, the queries are not executed in any sort of transaction/batch, meaning you are responsible for fixing partial migrations.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
DROP TABLE IF EXISTS users;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
CREATE TABLE users (
2+
user_id integer,
3+
name varchar,
4+
email varchar
5+
);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ALTER TABLE users DROP COLUMN IF EXISTS city;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
ALTER TABLE users ADD COLUMN city varchar;
2+
3+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
DROP INDEX IF EXISTS users_email_index;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
CREATE INDEX users_email_index ON users (email);
2+
3+
-- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean sed interdum velit, tristique iaculis justo. Pellentesque ut porttitor dolor. Donec sit amet pharetra elit. Cras vel ligula ex. Phasellus posuere.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
DROP TABLE IF EXISTS books;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
CREATE TABLE books (
2+
user_id integer,
3+
name varchar,
4+
author varchar
5+
);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
DROP TABLE IF EXISTS movies;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
CREATE TABLE movies (
2+
user_id integer,
3+
name varchar,
4+
director varchar
5+
);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean sed interdum velit, tristique iaculis justo. Pellentesque ut porttitor dolor. Donec sit amet pharetra elit. Cras vel ligula ex. Phasellus posuere.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean sed interdum velit, tristique iaculis justo. Pellentesque ut porttitor dolor. Donec sit amet pharetra elit. Cras vel ligula ex. Phasellus posuere.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean sed interdum velit, tristique iaculis justo. Pellentesque ut porttitor dolor. Donec sit amet pharetra elit. Cras vel ligula ex. Phasellus posuere.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean sed interdum velit, tristique iaculis justo. Pellentesque ut porttitor dolor. Donec sit amet pharetra elit. Cras vel ligula ex. Phasellus posuere.

0 commit comments

Comments
 (0)