Message-ID: From: "df7cb (@df7cb)" To: "postgresql-interfaces/psqlodbc" Date: Mon, 16 Jun 2025 12:41:12 +0000 Subject: [postgresql-interfaces/psqlodbc] PR #131: Add expected output file for descrec test in C locale List-Id: X-GitHub-Author-Id: 1021828 X-GitHub-Author-Login: df7cb X-GitHub-Issue: 131 X-GitHub-Repo: postgresql-interfaces/psqlodbc X-GitHub-State: merged X-GitHub-Type: pull_request X-GitHub-Url: https://github.com/postgresql-interfaces/psqlodbc/pull/131 Content-Type: text/plain; charset=utf-8 When running with LC_ALL=C, SQL_DESC_OCTET_LENGTH matches the character length. Add "10" as accepted value. The net diff to the existing descrec.out file is this: ``` --- test/expected/descrec.out 2025-06-13 19:02:36.460302799 +0200 +++ test/expected/descrec_2.out 2025-06-16 14:34:44.270543393 +0200 @@ -19,7 +19,7 @@ -- Column 3 -- SQL_DESC_NAME: col3 SQL_DESC_TYPE: 12 -SQL_DESC_OCTET_LENGTH: 40 +SQL_DESC_OCTET_LENGTH: 10 SQL_DESC_PRECISION: 0 SQL_DESC_SCALE: 0 SQL_DESC_NULLABLE: 0 ``` Fixes #51.