mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
9ed8f717a7
* WIP: Remove hdb_views for inserts
* Show failing row in check constraint error
* Revert "Show failing row in check constraint error"
This reverts commit dd2cac29d0
.
* Use the better query plan
* Simplify things
* fix cli test
* Update downgrading.rst
* remove 1.1 asset for cli
6 lines
165 B
PL/PgSQL
6 lines
165 B
PL/PgSQL
CREATE OR REPLACE FUNCTION hdb_catalog.check_violation(msg text) RETURNS bool AS
|
|
$$
|
|
BEGIN
|
|
RAISE check_violation USING message=msg;
|
|
END;
|
|
$$ LANGUAGE plpgsql; |