We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When trying to connect using Npgsql (in C#), it sends a sql like this:
Npgsql
SELECT pg_type.oid, enumlabel FROM pg_enum JOIN pg_type ON pg_type.oid=enumtypid ORDER BY oid, enumsortorder;
The problem is that in real pg server, this can work properly. But in MyDuck Server, it brings us a bug (created by DuckDB):
Binder Error: Ambiguous reference to column name "oid" (use: "pg_type.oid" or "pg_enum.oid")
The text was updated successfully, but these errors were encountered:
to #297 fix: add full_match_handler.go to convert the query.
af3deb4
to #297 test: enable pg test for csharp
b6d19f4
to #297 fix: bugs in ConvertToSys()
aabe13b
to #297 fix: mock pg_type, pg_namespace, pg_class, pg_proc and pg_ran…
f48b083
…ge in __sys__
TianyuZhang1214
Successfully merging a pull request may close this issue.
When trying to connect using
Npgsql
(in C#), it sends a sql like this:The problem is that in real pg server, this can work properly. But in MyDuck Server, it brings us a bug (created by DuckDB):
The text was updated successfully, but these errors were encountered: