GithubHelp home page GithubHelp logo

Comments (2)

sagitarious12 avatar sagitarious12 commented on June 25, 2024

Here is all of the postgres commands that I used to setup a test environment to verify the issue in a fresh environment with no other tables besides the ones created in this script:

CREATE SCHEMA "order";

GRANT USAGE ON SCHEMA "order" TO anon;

create table
  "order".infinity_rips (
    id bigint generated by default as identity,
    height bigint null,
    constraint infinity_rips_pkey primary key (id),
  ) tablespace pg_default;

GRANT ALL ON TABLE "order".infinity_rips TO anon;

ALTER TABLE "order".infinity_rips ENABLE ROW LEVEL SECURITY;

CREATE POLICY "Enable read access for all users" ON "order"."infinity_rips"
AS PERMISSIVE FOR ALL
TO anon
USING (true);

create table
  "order".header_designs (
    id bigint generated by default as identity,
    design_name text null,
    constraint header_designs_pkey primary key (id),
  ) tablespace pg_default;
  
GRANT ALL ON TABLE "order".header_designs TO anon;

ALTER TABLE "order".header_designs ENABLE ROW LEVEL SECURITY;

CREATE POLICY "Enable read access for all users" ON "order"."header_designs"
AS PERMISSIVE FOR ALL
TO anon
USING (true);

INSERT INTO "order".infinity_rips 
  (height) 
VALUES 
  (2);

INSERT INTO "order".header_designs
  (design_name)
values
  ('some design');

from supabase.

GaryAustin1 avatar GaryAustin1 commented on June 25, 2024

This is discussed a bit more here: https://github.com/orgs/supabase/discussions/26896
I suspect this is being an issue with making changes while the subscription is running on two tables from the client and getting errors on one impacting the other as they are in the same channel.

from supabase.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.