Skip to content

Commit

Permalink
build(deps): bump Npgsql from 8.0.2 to 8.0.3 in /src/test/csharp/pgad…
Browse files Browse the repository at this point in the history
…apter_npgsql_tests (#1728)

* build(deps): bump Npgsql in /src/test/csharp/pgadapter_npgsql_tests

Bumps [Npgsql](https://github.com/npgsql/npgsql) from 8.0.2 to 8.0.3.
- [Release notes](https://github.com/npgsql/npgsql/releases)
- [Commits](npgsql/npgsql@v8.0.2...v8.0.3)

---
updated-dependencies:
- dependency-name: Npgsql
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore: modify startup query

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Knut Olav Løite <koloite@gmail.com>
  • Loading branch information
dependabot[bot] and olavloite authored May 10, 2024
1 parent e6f305a commit c06bc1e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Npgsql" Version="8.0.2" />
<PackageReference Include="Npgsql" Version="8.0.3" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@ public abstract class AbstractNpgsqlMockServerTest extends AbstractMockServerTes
+ " ))\n"
+ "ORDER BY CASE\n"
+ " WHEN typtype IN ('b', 'e', 'p') THEN 0 -- First base types, enums, pseudo-types\n"
+ " WHEN typtype = 'r' THEN 1 -- Ranges after\n"
+ " WHEN typtype = 'm' THEN 2 -- Multiranges after\n"
+ " WHEN typtype = 'c' THEN 3 -- Composites after\n"
+ " WHEN typtype = 'c' THEN 1 -- Composites after (fields loaded later in 2nd pass)\n"
+ " WHEN typtype = 'r' THEN 2 -- Ranges after\n"
+ " WHEN typtype = 'm' THEN 3 -- Multiranges after\n"
+ " WHEN typtype = 'd' AND elemtyptype <> 'a' THEN 4 -- Domains over non-arrays after\n"
+ " WHEN typtype = 'a' THEN 5 -- Arrays after\n"
+ " WHEN typtype = 'd' AND elemtyptype = 'a' THEN 6 -- Domains over arrays last\n"
Expand Down

0 comments on commit c06bc1e

Please sign in to comment.