Skip to content

Instantly share code, notes, and snippets.

@GavinRay97
Created December 23, 2022 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GavinRay97/4a15b31145f1d621fd6eefa7e961128b to your computer and use it in GitHub Desktop.
Save GavinRay97/4a15b31145f1d621fd6eefa7e961128b to your computer and use it in GitHub Desktop.
Postgres wire protocol doc translator + code-generator platform (dumps wire protocol to structured JSON, allows easy codegen of types)
import fs from "node:fs"
const postgresWireProtocolDocs = `
AuthenticationOk (B)
Byte1('R')
Identifies the message as an authentication request.
Int32(8)
Length of message contents in bytes, including self.
Int32(0)
Specifies that the authentication was successful.
AuthenticationKerberosV5 (B)
Byte1('R')
Identifies the message as an authentication request.
Int32(8)
Length of message contents in bytes, including self.
Int32(2)
Specifies that Kerberos V5 authentication is required.
AuthenticationCleartextPassword (B)
Byte1('R')
Identifies the message as an authentication request.
Int32(8)
Length of message contents in bytes, including self.
Int32(3)
Specifies that a clear-text password is required.
AuthenticationMD5Password (B)
Byte1('R')
Identifies the message as an authentication request.
Int32(12)
Length of message contents in bytes, including self.
Int32(5)
Specifies that an MD5-encrypted password is required.
Byte4
The salt to use when encrypting the password.
AuthenticationSCMCredential (B)
Byte1('R')
Identifies the message as an authentication request.
Int32(8)
Length of message contents in bytes, including self.
Int32(6)
Specifies that an SCM credentials message is required.
AuthenticationGSS (B)
Byte1('R')
Identifies the message as an authentication request.
Int32(8)
Length of message contents in bytes, including self.
Int32(7)
Specifies that GSSAPI authentication is required.
AuthenticationGSSContinue (B)
Byte1('R')
Identifies the message as an authentication request.
Int32
Length of message contents in bytes, including self.
Int32(8)
Specifies that this message contains GSSAPI or SSPI data.
Byten
GSSAPI or SSPI authentication data.
AuthenticationSSPI (B)
Byte1('R')
Identifies the message as an authentication request.
Int32(8)
Length of message contents in bytes, including self.
Int32(9)
Specifies that SSPI authentication is required.
AuthenticationSASL (B)
Byte1('R')
Identifies the message as an authentication request.
Int32
Length of message contents in bytes, including self.
Int32(10)
Specifies that SASL authentication is required.
The message body is a list of SASL authentication mechanisms, in the server's order of preference. A zero byte is required as terminator after the last authentication mechanism name. For each mechanism, there is the following:
String
Name of a SASL authentication mechanism.
AuthenticationSASLContinue (B)
Byte1('R')
Identifies the message as an authentication request.
Int32
Length of message contents in bytes, including self.
Int32(11)
Specifies that this message contains a SASL challenge.
Byten
SASL data, specific to the SASL mechanism being used.
AuthenticationSASLFinal (B)
Byte1('R')
Identifies the message as an authentication request.
Int32
Length of message contents in bytes, including self.
Int32(12)
Specifies that SASL authentication has completed.
Byten
SASL outcome "additional data", specific to the SASL mechanism being used.
BackendKeyData (B)
Byte1('K')
Identifies the message as cancellation key data. The frontend must save these values if it wishes to be able to issue CancelRequest messages later.
Int32(12)
Length of message contents in bytes, including self.
Int32
The process ID of this backend.
Int32
The secret key of this backend.
Bind (F)
Byte1('B')
Identifies the message as a Bind command.
Int32
Length of message contents in bytes, including self.
String
The name of the destination portal (an empty string selects the unnamed portal).
String
The name of the source prepared statement (an empty string selects the unnamed prepared statement).
Int16
The number of parameter format codes that follow (denoted C below). This can be zero to indicate that there are no parameters or that the parameters all use the default format (text); or one, in which case the specified format code is applied to all parameters; or it can equal the actual number of parameters.
Int16[C]
The parameter format codes. Each must presently be zero (text) or one (binary).
Int16
The number of parameter values that follow (possibly zero). This must match the number of parameters needed by the query.
Next, the following pair of fields appear for each parameter:
Int32
The length of the parameter value, in bytes (this count does not include itself). Can be zero. As a special case, -1 indicates a NULL parameter value. No value bytes follow in the NULL case.
Byten
The value of the parameter, in the format indicated by the associated format code. n is the above length.
After the last parameter, the following fields appear:
Int16
The number of result-column format codes that follow (denoted R below). This can be zero to indicate that there are no result columns or that the result columns should all use the default format (text); or one, in which case the specified format code is applied to all result columns (if any); or it can equal the actual number of result columns of the query.
Int16[R]
The result-column format codes. Each must presently be zero (text) or one (binary).
BindComplete (B)
Byte1('2')
Identifies the message as a Bind-complete indicator.
Int32(4)
Length of message contents in bytes, including self.
CancelRequest (F)
Int32(16)
Length of message contents in bytes, including self.
Int32(80877102)
The cancel request code. The value is chosen to contain 1234 in the most significant 16 bits, and 5678 in the least significant 16 bits. (To avoid confusion, this code must not be the same as any protocol version number.)
Int32
The process ID of the target backend.
Int32
The secret key for the target backend.
Close (F)
Byte1('C')
Identifies the message as a Close command.
Int32
Length of message contents in bytes, including self.
Byte1
'S' to close a prepared statement; or 'P' to close a portal.
String
The name of the prepared statement or portal to close (an empty string selects the unnamed prepared statement or portal).
CloseComplete (B)
Byte1('3')
Identifies the message as a Close-complete indicator.
Int32(4)
Length of message contents in bytes, including self.
CommandComplete (B)
Byte1('C')
Identifies the message as a command-completed response.
Int32
Length of message contents in bytes, including self.
String
The command tag. This is usually a single word that identifies which SQL command was completed.
For an INSERT command, the tag is INSERT oid rows, where rows is the number of rows inserted. oid used to be the object ID of the inserted row if rows was 1 and the target table had OIDs, but OIDs system columns are not supported anymore; therefore oid is always 0.
For a DELETE command, the tag is DELETE rows where rows is the number of rows deleted.
For an UPDATE command, the tag is UPDATE rows where rows is the number of rows updated.
For a SELECT or CREATE TABLE AS command, the tag is SELECT rows where rows is the number of rows retrieved.
For a MOVE command, the tag is MOVE rows where rows is the number of rows the cursor's position has been changed by.
For a FETCH command, the tag is FETCH rows where rows is the number of rows that have been retrieved from the cursor.
For a COPY command, the tag is COPY rows where rows is the number of rows copied. (Note: the row count appears only in PostgreSQL 8.2 and later.)
CopyData (F & B)
Byte1('d')
Identifies the message as COPY data.
Int32
Length of message contents in bytes, including self.
Byten
Data that forms part of a COPY data stream. Messages sent from the backend will always correspond to single data rows, but messages sent by frontends might divide the data stream arbitrarily.
CopyDone (F & B)
Byte1('c')
Identifies the message as a COPY-complete indicator.
Int32(4)
Length of message contents in bytes, including self.
CopyFail (F)
Byte1('f')
Identifies the message as a COPY-failure indicator.
Int32
Length of message contents in bytes, including self.
String
An error message to report as the cause of failure.
CopyInResponse (B)
Byte1('G')
Identifies the message as a Start Copy In response. The frontend must now send copy-in data (if not prepared to do so, send a CopyFail message).
Int32
Length of message contents in bytes, including self.
Int8
0 indicates the overall COPY format is textual (rows separated by newlines, columns separated by separator characters, etc.). 1 indicates the overall copy format is binary (similar to DataRow format). See COPY for more information.
Int16
The number of columns in the data to be copied (denoted N below).
Int16[N]
The format codes to be used for each column. Each must presently be zero (text) or one (binary). All must be zero if the overall copy format is textual.
CopyOutResponse (B)
Byte1('H')
Identifies the message as a Start Copy Out response. This message will be followed by copy-out data.
Int32
Length of message contents in bytes, including self.
Int8
0 indicates the overall COPY format is textual (rows separated by newlines, columns separated by separator characters, etc.). 1 indicates the overall copy format is binary (similar to DataRow format). See COPY for more information.
Int16
The number of columns in the data to be copied (denoted N below).
Int16[N]
The format codes to be used for each column. Each must presently be zero (text) or one (binary). All must be zero if the overall copy format is textual.
CopyBothResponse (B)
Byte1('W')
Identifies the message as a Start Copy Both response. This message is used only for Streaming Replication.
Int32
Length of message contents in bytes, including self.
Int8
0 indicates the overall COPY format is textual (rows separated by newlines, columns separated by separator characters, etc.). 1 indicates the overall copy format is binary (similar to DataRow format). See COPY for more information.
Int16
The number of columns in the data to be copied (denoted N below).
Int16[N]
The format codes to be used for each column. Each must presently be zero (text) or one (binary). All must be zero if the overall copy format is textual.
DataRow (B)
Byte1('D')
Identifies the message as a data row.
Int32
Length of message contents in bytes, including self.
Int16
The number of column values that follow (possibly zero).
Next, the following pair of fields appear for each column:
Int32
The length of the column value, in bytes (this count does not include itself). Can be zero. As a special case, -1 indicates a NULL column value. No value bytes follow in the NULL case.
Byten
The value of the column, in the format indicated by the associated format code. n is the above length.
Describe (F)
Byte1('D')
Identifies the message as a Describe command.
Int32
Length of message contents in bytes, including self.
Byte1
'S' to describe a prepared statement; or 'P' to describe a portal.
String
The name of the prepared statement or portal to describe (an empty string selects the unnamed prepared statement or portal).
EmptyQueryResponse (B)
Byte1('I')
Identifies the message as a response to an empty query string. (This substitutes for CommandComplete.)
Int32(4)
Length of message contents in bytes, including self.
ErrorResponse (B)
Byte1('E')
Identifies the message as an error.
Int32
Length of message contents in bytes, including self.
The message body consists of one or more identified fields, followed by a zero byte as a terminator. Fields can appear in any order. For each field there is the following:
Byte1
A code identifying the field type; if zero, this is the message terminator and no string follows. The presently defined field types are listed in Section 55.8. Since more field types might be added in future, frontends should silently ignore fields of unrecognized type.
String
The field value.
Execute (F)
Byte1('E')
Identifies the message as an Execute command.
Int32
Length of message contents in bytes, including self.
String
The name of the portal to execute (an empty string selects the unnamed portal).
Int32
Maximum number of rows to return, if portal contains a query that returns rows (ignored otherwise). Zero denotes “no limit”.
Flush (F)
Byte1('H')
Identifies the message as a Flush command.
Int32(4)
Length of message contents in bytes, including self.
FunctionCall (F)
Byte1('F')
Identifies the message as a function call.
Int32
Length of message contents in bytes, including self.
Int32
Specifies the object ID of the function to call.
Int16
The number of argument format codes that follow (denoted C below). This can be zero to indicate that there are no arguments or that the arguments all use the default format (text); or one, in which case the specified format code is applied to all arguments; or it can equal the actual number of arguments.
Int16[C]
The argument format codes. Each must presently be zero (text) or one (binary).
Int16
Specifies the number of arguments being supplied to the function.
Next, the following pair of fields appear for each argument:
Int32
The length of the argument value, in bytes (this count does not include itself). Can be zero. As a special case, -1 indicates a NULL argument value. No value bytes follow in the NULL case.
Byten
The value of the argument, in the format indicated by the associated format code. n is the above length.
After the last argument, the following field appears:
Int16
The format code for the function result. Must presently be zero (text) or one (binary).
FunctionCallResponse (B)
Byte1('V')
Identifies the message as a function call result.
Int32
Length of message contents in bytes, including self.
Int32
The length of the function result value, in bytes (this count does not include itself). Can be zero. As a special case, -1 indicates a NULL function result. No value bytes follow in the NULL case.
Byten
The value of the function result, in the format indicated by the associated format code. n is the above length.
GSSENCRequest (F)
Int32(8)
Length of message contents in bytes, including self.
Int32(80877104)
The GSSAPI Encryption request code. The value is chosen to contain 1234 in the most significant 16 bits, and 5680 in the least significant 16 bits. (To avoid confusion, this code must not be the same as any protocol version number.)
GSSResponse (F)
Byte1('p')
Identifies the message as a GSSAPI or SSPI response. Note that this is also used for SASL and password response messages. The exact message type can be deduced from the context.
Int32
Length of message contents in bytes, including self.
Byten
GSSAPI/SSPI specific message data.
NegotiateProtocolVersion (B)
Byte1('v')
Identifies the message as a protocol version negotiation message.
Int32
Length of message contents in bytes, including self.
Int32
Newest minor protocol version supported by the server for the major protocol version requested by the client.
Int32
Number of protocol options not recognized by the server.
Then, for protocol option not recognized by the server, there is the following:
String
The option name.
NoData (B)
Byte1('n')
Identifies the message as a no-data indicator.
Int32(4)
Length of message contents in bytes, including self.
NoticeResponse (B)
Byte1('N')
Identifies the message as a notice.
Int32
Length of message contents in bytes, including self.
The message body consists of one or more identified fields, followed by a zero byte as a terminator. Fields can appear in any order. For each field there is the following:
Byte1
A code identifying the field type; if zero, this is the message terminator and no string follows. The presently defined field types are listed in Section 55.8. Since more field types might be added in future, frontends should silently ignore fields of unrecognized type.
String
The field value.
NotificationResponse (B)
Byte1('A')
Identifies the message as a notification response.
Int32
Length of message contents in bytes, including self.
Int32
The process ID of the notifying backend process.
String
The name of the channel that the notify has been raised on.
String
The “payload” string passed from the notifying process.
ParameterDescription (B)
Byte1('t')
Identifies the message as a parameter description.
Int32
Length of message contents in bytes, including self.
Int16
The number of parameters used by the statement (can be zero).
Then, for each parameter, there is the following:
Int32
Specifies the object ID of the parameter data type.
ParameterStatus (B)
Byte1('S')
Identifies the message as a run-time parameter status report.
Int32
Length of message contents in bytes, including self.
String
The name of the run-time parameter being reported.
String
The current value of the parameter.
Parse (F)
Byte1('P')
Identifies the message as a Parse command.
Int32
Length of message contents in bytes, including self.
String
The name of the destination prepared statement (an empty string selects the unnamed prepared statement).
String
The query string to be parsed.
Int16
The number of parameter data types specified (can be zero). Note that this is not an indication of the number of parameters that might appear in the query string, only the number that the frontend wants to prespecify types for.
Then, for each parameter, there is the following:
Int32
Specifies the object ID of the parameter data type. Placing a zero here is equivalent to leaving the type unspecified.
ParseComplete (B)
Byte1('1')
Identifies the message as a Parse-complete indicator.
Int32(4)
Length of message contents in bytes, including self.
PasswordMessage (F)
Byte1('p')
Identifies the message as a password response. Note that this is also used for GSSAPI, SSPI and SASL response messages. The exact message type can be deduced from the context.
Int32
Length of message contents in bytes, including self.
String
The password (encrypted, if requested).
PortalSuspended (B)
Byte1('s')
Identifies the message as a portal-suspended indicator. Note this only appears if an Execute message's row-count limit was reached.
Int32(4)
Length of message contents in bytes, including self.
Query (F)
Byte1('Q')
Identifies the message as a simple query.
Int32
Length of message contents in bytes, including self.
String
The query string itself.
ReadyForQuery (B)
Byte1('Z')
Identifies the message type. ReadyForQuery is sent whenever the backend is ready for a new query cycle.
Int32(5)
Length of message contents in bytes, including self.
Byte1
Current backend transaction status indicator. Possible values are 'I' if idle (not in a transaction block); 'T' if in a transaction block; or 'E' if in a failed transaction block (queries will be rejected until block is ended).
RowDescription (B)
Byte1('T')
Identifies the message as a row description.
Int32
Length of message contents in bytes, including self.
Int16
Specifies the number of fields in a row (can be zero).
Then, for each field, there is the following:
String
The field name.
Int32
If the field can be identified as a column of a specific table, the object ID of the table; otherwise zero.
Int16
If the field can be identified as a column of a specific table, the attribute number of the column; otherwise zero.
Int32
The object ID of the field's data type.
Int16
The data type size (see pg_type.typlen). Note that negative values denote variable-width types.
Int32
The type modifier (see pg_attribute.atttypmod). The meaning of the modifier is type-specific.
Int16
The format code being used for the field. Currently will be zero (text) or one (binary). In a RowDescription returned from the statement variant of Describe, the format code is not yet known and will always be zero.
SASLInitialResponse (F)
Byte1('p')
Identifies the message as an initial SASL response. Note that this is also used for GSSAPI, SSPI and password response messages. The exact message type is deduced from the context.
Int32
Length of message contents in bytes, including self.
String
Name of the SASL authentication mechanism that the client selected.
Int32
Length of SASL mechanism specific "Initial Client Response" that follows, or -1 if there is no Initial Response.
Byten
SASL mechanism specific "Initial Response".
SASLResponse (F)
Byte1('p')
Identifies the message as a SASL response. Note that this is also used for GSSAPI, SSPI and password response messages. The exact message type can be deduced from the context.
Int32
Length of message contents in bytes, including self.
Byten
SASL mechanism specific message data.
SSLRequest (F)
Int32(8)
Length of message contents in bytes, including self.
Int32(80877103)
The SSL request code. The value is chosen to contain 1234 in the most significant 16 bits, and 5679 in the least significant 16 bits. (To avoid confusion, this code must not be the same as any protocol version number.)
StartupMessage (F)
Int32
Length of message contents in bytes, including self.
Int32(196608)
The protocol version number. The most significant 16 bits are the major version number (3 for the protocol described here). The least significant 16 bits are the minor version number (0 for the protocol described here).
The protocol version number is followed by one or more pairs of parameter name and value strings. A zero byte is required as a terminator after the last name/value pair. Parameters can appear in any order. user is required, others are optional. Each parameter is specified as:
String
The parameter name. Currently recognized names are:
user
The database user name to connect as. Required; there is no default.
database
The database to connect to. Defaults to the user name.
options
Command-line arguments for the backend. (This is deprecated in favor of setting individual run-time parameters.) Spaces within this string are considered to separate arguments, unless escaped with a backslash (\); write \\ to represent a literal backslash.
replication
Used to connect in streaming replication mode, where a small set of replication commands can be issued instead of SQL statements. Value can be true, false, or database, and the default is false. See Section 55.4 for details.
In addition to the above, other parameters may be listed. Parameter names beginning with _pq_. are reserved for use as protocol extensions, while others are treated as run-time parameters to be set at backend start time. Such settings will be applied during backend start (after parsing the command-line arguments if any) and will act as session defaults.
String
The parameter value.
Sync (F)
Byte1('S')
Identifies the message as a Sync command.
Int32(4)
Length of message contents in bytes, including self.
Terminate (F)
Byte1('X')
Identifies the message as a termination.
Int32(4)
Length of message contents in bytes, including self.
`
// Regex for lines like "Terminate (F)"
// Where the first group is the name of the message and the second is the kind (Backend/Frontend)
const pgMessageTypeRegex = /^(?<command>\w+) \((?<kind>\w)\)$/gm
// Regex for the type of a variable, like:
// - Int16, Int32, Byten, Byte4, String
// - Byte1('S')
// - Int32(4)
// - Int16[N]
// Where:
// - The first group is the type (Int16, Int32, Byten, Byte4, String, Byte1, Int32, etc)
// - For types like Int32(4), there is a second group with the value (4)
// - For Byte1, the second group is the character value (e.g. 'S')
// - For types like Int16[N], there is a third group with the array size (N)
const fieldTypeRegex =
/^(?<type>Int16|Int32|Byten|Byte4|String|Byte1|Int32|Int16)(?:\((?<value>.+)\))?(?:\[(?<arraySize>\w+)\])?$/gm
interface PostgresMessageField {
type: string // e.g. Int16, Int32, Byten, Byte4, String, Byte1
description: string
value?: string | number // e.g. Int32(4), Byte1('S') => 4, 'S'
arraySize?: string // e.g. Int16[N] => N
}
interface PostgresMessage {
kind: string
fields: PostgresMessageField[]
}
interface PostgresTypes {
[key: string]: PostgresMessage
}
abstract class PostgresTypeGenerator {
constructor(protected pgTypes: PostgresTypes) {}
abstract getTypeMap(): Record<string, string>
abstract translateField(field: PostgresMessageField, idx: number): string
abstract translateMessage(cmd: string, message: PostgresMessage): string
abstract writeHeader(): string
abstract writeContainingTypeStart(): string
abstract writeContainingTypeEnd(): string
abstract writeBackendTypes(types: PostgresTypes): string
abstract writeFrontendTypes(types: PostgresTypes): string
translate(): string[] {
const generatedTypes = [] as string[]
const backendMessages = {} as PostgresTypes
const frontendMessages = {} as PostgresTypes
for (const cmd of Object.keys(this.pgTypes)) {
const { kind } = this.pgTypes[cmd]
if (kind === "F") {
frontendMessages[cmd] = this.pgTypes[cmd]
} else {
backendMessages[cmd] = this.pgTypes[cmd]
}
}
generatedTypes.push(this.writeHeader())
generatedTypes.push(this.writeContainingTypeStart())
{
generatedTypes.push(this.writeBackendTypes(backendMessages))
generatedTypes.push(this.writeFrontendTypes(frontendMessages))
}
generatedTypes.push(this.writeContainingTypeEnd())
return generatedTypes
}
}
class JavaTypeGenerator extends PostgresTypeGenerator {
getTypeMap() {
return {
Int8: "byte",
Int16: "short",
Int32: "int",
Byte1: "byte",
Byte4: "byte[] /* Byte4 */",
Byten: "byte[] /* Byten */",
String: "byte[] /* Null-terminated */",
}
}
translateField(field: PostgresMessageField, idx: number): string {
const { type, description, value, arraySize } = field
const javaType = this.getTypeMap()[type as keyof ReturnType<typeof this.getTypeMap>]
if (!javaType) {
throw new Error(`Unknown type: ${type}`)
}
// Generate name as "field1_int16" etc
const name = `field${idx + 1}_${type}`
//prettier-ignore
return `\t\t\t/** ${description} */\n` +
`\t\t\t${javaType} ${name}${value ? ` = ${value}` : ""}${arraySize ? ` /* ${arraySize} */` : ""};\n`
}
translateMessage(cmd: string, message: PostgresMessage): string {
const { kind, fields } = message
const javaFields = fields.map((field, idx) => this.translateField(field, idx))
const javaMessage = `\t\tpublic static class ${cmd} {\n` + javaFields.join("") + `\t\t}`
return javaMessage
}
writeHeader(): string {
return `// Generated by blah blah blah`
}
writeContainingTypeStart(): string {
return `public class PostgresTypes {`
}
writeContainingTypeEnd(): string {
return `}`
}
writeBackendTypes(types: PostgresTypes): string {
const backendMessages = [] as string[]
for (const cmd of Object.keys(types)) {
const message = types[cmd]
backendMessages.push(this.translateMessage(cmd, message))
}
return `\tpublic static class Backend {\n` + backendMessages.join("\n") + `\n\t}`
}
writeFrontendTypes(types: PostgresTypes): string {
const frontendMessages = [] as string[]
for (const cmd of Object.keys(types)) {
const message = types[cmd]
frontendMessages.push(this.translateMessage(cmd, message))
}
return `\tpublic static class Frontend {\n` + frontendMessages.join("\n") + `\n\t}`
}
}
function main() {
const pgTypes = {} as PostgresTypes
let currentFieldIndex = 0
let currentCmd = "" as keyof PostgresTypes
for (const line of postgresWireProtocolDocs.trim().split("\n")) {
console.log("Processing line: ", line)
switch (true) {
case pgMessageTypeRegex.test(line): {
const match = line.matchAll(new RegExp(pgMessageTypeRegex)).next().value
if (!match || !match.groups) {
throw new Error("Shouldn't happen")
}
const { command, kind } = match.groups
pgTypes[command] = {
kind,
fields: [],
}
currentCmd = command
currentFieldIndex = 0
break
}
case fieldTypeRegex.test(line): {
for (const match of line.matchAll(new RegExp(fieldTypeRegex))) {
if (!match || !match.groups) {
throw new Error("Shouldn't happen")
}
const { type, value, arraySize } = match.groups
pgTypes[currentCmd].fields.push({
type,
description: "",
// if the value is a number, we'll convert it to a number
value: value && !isNaN(Number(value)) ? Number(value) : value,
arraySize,
})
currentFieldIndex++
}
break
}
default:
// If it's neither a message type nor a field type, it's a comment, and so we'll add it to the description of the current field
pgTypes[currentCmd].fields[currentFieldIndex - 1].description += line
}
console.log({ currentCmd, currentFieldIndex, pgTypes })
}
console.table(pgTypes, ["kind"])
console.log("Bind (F)")
console.table(
pgTypes.Bind.fields.map((field) => ({
...field,
description: field.description.substring(0, 50),
}))
)
console.dir(pgTypes.Bind, { depth: null })
const javaTypeGen = new JavaTypeGenerator(pgTypes)
const javaTypes = javaTypeGen.translate()
fs.writeFileSync("PostgresTypes.java", javaTypes.join("\n\n"))
}
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment