Message-ID: From: "KristianIvarsson (@KristianIvarsson)" To: "postgresql-interfaces/psqlodbc" Date: Fri, 20 Sep 2024 13:52:36 +0000 Subject: Re: [postgresql-interfaces/psqlodbc] issue #43: syntax error at or near "ROWS" In-Reply-To: References: List-Id: X-GitHub-Author-Login: KristianIvarsson X-GitHub-Comment-Id: 2363795179 X-GitHub-Comment-Type: issue_comment X-GitHub-Issue: 43 X-GitHub-Repo: postgresql-interfaces/psqlodbc X-GitHub-Type: comment X-GitHub-Url: https://github.com/postgresql-interfaces/psqlodbc/issues/43#issuecomment-2363795179 Content-Type: text/plain; charset=utf-8 Table definition ``` CREATE TABLE "ServerSession" ( "Id" uuid NOT NULL, "Begin" timestamp without time zone, "End" timestamp without time zone, "Logfile" character varying(255) ); ALTER TABLE ONLY "ServerSession" ADD CONSTRAINT "ServerSession_pkey" PRIMARY KEY ("Id"); CREATE INDEX "Indx_ServerSession_Begin" ON "ServerSession" USING btree ("Begin") WITH (fillfactor='90', deduplicate_items='true'); CREATE INDEX "Indx_ServerSession_End" ON "ServerSession" USING btree ("End") WITH (fillfactor='90', deduplicate_items='true'); ```