GithubHelp home page GithubHelp logo

Comments (7)

d4nt avatar d4nt commented on August 26, 2024

Could you attach the CREATE TABLE statement for your table? (Or a simplified version that still reproduces this issue).

from querytree.

tirsoh avatar tirsoh commented on August 26, 2024

CREATE TABLE IF NOT EXISTS myschema.tablename
(
primary_id character(36) NOT NULL,
profile_id character(36) NOT NULL,
state_code text NOT NULL,
class_code integer NOT NULL,
license text NOT NULL,
class text,
record_created_on timestamp with time zone NOT NULL DEFAULT now(),
status text,
res_indicator boolean,
issue_date date,
effective_date date,
expiration_date date,
change_sequence bigint,
source text,
status_date date,
digest_id character(32),
CONSTRAINT tablename_pk PRIMARY KEY (primary_id)
USING INDEX TABLESPACE indexspace,
CONSTRAINT tablename_profile_id_fkey FOREIGN KEY (profile_id)
REFERENCES myschema.profile (profile_id) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE NO ACTION
)
WITH (
OIDS=FALSE
);

from querytree.

d4nt avatar d4nt commented on August 26, 2024

@tirsoh I've pushed a change (f0593ea) to the develop branch that I think might fix your issue. Could you checkout develop and retry? If this fixes your issue we can merge into master which will create a new release binary.

from querytree.

tirsoh avatar tirsoh commented on August 26, 2024

I am running this by using docker images because I am on a Mac and I don’t have any .net tools or experience so I won’t be able to build this on my machine. Could you provide me with a docker image to test with?

from querytree.

d4nt avatar d4nt commented on August 26, 2024

No, sorry. That's something we would only do for a customer on one of our commercial support packages.

But you could clone develop then follow our Docker guide, which has a section on building your own image locally. You won't need .NET to be installed.

from querytree.

tirsoh avatar tirsoh commented on August 26, 2024

Ok let me give that a try and I will let you know.

from querytree.

stale avatar stale commented on August 26, 2024

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

from querytree.

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.