@jaepil/usqldb 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/LICENSE +661 -0
  2. package/README.md +225 -0
  3. package/dist/types/cli/command-handler.d.ts +52 -0
  4. package/dist/types/cli/command-handler.d.ts.map +1 -0
  5. package/dist/types/cli/completer.d.ts +23 -0
  6. package/dist/types/cli/completer.d.ts.map +1 -0
  7. package/dist/types/cli/formatter.d.ts +39 -0
  8. package/dist/types/cli/formatter.d.ts.map +1 -0
  9. package/dist/types/cli/index.d.ts +4 -0
  10. package/dist/types/cli/index.d.ts.map +1 -0
  11. package/dist/types/cli/shell-cli.d.ts +5 -0
  12. package/dist/types/cli/shell-cli.d.ts.map +1 -0
  13. package/dist/types/cli/shell.d.ts +41 -0
  14. package/dist/types/cli/shell.d.ts.map +1 -0
  15. package/dist/types/core/compiler.d.ts +4 -0
  16. package/dist/types/core/compiler.d.ts.map +1 -0
  17. package/dist/types/core/engine.d.ts +14 -0
  18. package/dist/types/core/engine.d.ts.map +1 -0
  19. package/dist/types/index.d.ts +6 -0
  20. package/dist/types/index.d.ts.map +1 -0
  21. package/dist/types/net/pgwire/auth.d.ts +46 -0
  22. package/dist/types/net/pgwire/auth.d.ts.map +1 -0
  23. package/dist/types/net/pgwire/config.d.ts +24 -0
  24. package/dist/types/net/pgwire/config.d.ts.map +1 -0
  25. package/dist/types/net/pgwire/connection.d.ts +84 -0
  26. package/dist/types/net/pgwire/connection.d.ts.map +1 -0
  27. package/dist/types/net/pgwire/constants.d.ts +73 -0
  28. package/dist/types/net/pgwire/constants.d.ts.map +1 -0
  29. package/dist/types/net/pgwire/errors.d.ts +210 -0
  30. package/dist/types/net/pgwire/errors.d.ts.map +1 -0
  31. package/dist/types/net/pgwire/index.d.ts +5 -0
  32. package/dist/types/net/pgwire/index.d.ts.map +1 -0
  33. package/dist/types/net/pgwire/message-codec.d.ts +65 -0
  34. package/dist/types/net/pgwire/message-codec.d.ts.map +1 -0
  35. package/dist/types/net/pgwire/messages.d.ts +126 -0
  36. package/dist/types/net/pgwire/messages.d.ts.map +1 -0
  37. package/dist/types/net/pgwire/query-executor.d.ts +34 -0
  38. package/dist/types/net/pgwire/query-executor.d.ts.map +1 -0
  39. package/dist/types/net/pgwire/read-buffer.d.ts +24 -0
  40. package/dist/types/net/pgwire/read-buffer.d.ts.map +1 -0
  41. package/dist/types/net/pgwire/server-cli.d.ts +2 -0
  42. package/dist/types/net/pgwire/server-cli.d.ts.map +1 -0
  43. package/dist/types/net/pgwire/server.d.ts +23 -0
  44. package/dist/types/net/pgwire/server.d.ts.map +1 -0
  45. package/dist/types/net/pgwire/type-codec.d.ts +9 -0
  46. package/dist/types/net/pgwire/type-codec.d.ts.map +1 -0
  47. package/dist/types/net/pgwire/write-buffer.d.ts +34 -0
  48. package/dist/types/net/pgwire/write-buffer.d.ts.map +1 -0
  49. package/dist/types/pg-compat/connection-registry.d.ts +19 -0
  50. package/dist/types/pg-compat/connection-registry.d.ts.map +1 -0
  51. package/dist/types/pg-compat/information-schema.d.ts +34 -0
  52. package/dist/types/pg-compat/information-schema.d.ts.map +1 -0
  53. package/dist/types/pg-compat/oid.d.ts +48 -0
  54. package/dist/types/pg-compat/oid.d.ts.map +1 -0
  55. package/dist/types/pg-compat/pg-catalog.d.ts +45 -0
  56. package/dist/types/pg-compat/pg-catalog.d.ts.map +1 -0
  57. package/dist/usqldb.es.js +3598 -0
  58. package/dist/usqldb.es.js.map +1 -0
  59. package/dist/usqldb.umd.js +2 -0
  60. package/dist/usqldb.umd.js.map +1 -0
  61. package/package.json +65 -0
@@ -0,0 +1,34 @@
1
+ export declare class WriteBuffer {
2
+ private _buf;
3
+ constructor();
4
+ /** Append a single unsigned byte. */
5
+ writeByte(val: number): void;
6
+ /** Append a signed 16-bit big-endian integer. */
7
+ writeInt16(val: number): void;
8
+ /** Append an unsigned 16-bit big-endian integer. */
9
+ writeUint16(val: number): void;
10
+ /** Append a signed 32-bit big-endian integer. */
11
+ writeInt32(val: number): void;
12
+ /** Append an unsigned 32-bit big-endian integer. */
13
+ writeUint32(val: number): void;
14
+ /** Append a null-terminated UTF-8 string. */
15
+ writeString(val: string): void;
16
+ /** Append raw bytes (no length prefix, no terminator). */
17
+ writeBytes(val: Buffer): void;
18
+ /**
19
+ * Finalise the message with a type byte and length prefix.
20
+ *
21
+ * The length field includes itself (4 bytes) but not the type byte,
22
+ * matching the PostgreSQL wire protocol convention.
23
+ */
24
+ finish(msgType: number): Buffer;
25
+ /**
26
+ * Finalise without a type byte (used for startup responses).
27
+ *
28
+ * The returned bytes are just the 4-byte length prefix followed
29
+ * by the payload. This is used for messages that do not have a
30
+ * leading type byte, such as the server's SSL response.
31
+ */
32
+ finishNoType(): Buffer;
33
+ }
34
+ //# sourceMappingURL=write-buffer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"write-buffer.d.ts","sourceRoot":"","sources":["../../../../src/net/pgwire/write-buffer.ts"],"names":[],"mappings":"AAQA,qBAAa,WAAW;IACtB,OAAO,CAAC,IAAI,CAAW;;IAMvB,qCAAqC;IACrC,SAAS,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAI5B,iDAAiD;IACjD,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAM7B,oDAAoD;IACpD,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAM9B,iDAAiD;IACjD,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAM7B,oDAAoD;IACpD,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAM9B,6CAA6C;IAC7C,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAQ9B,0DAA0D;IAC1D,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAM7B;;;;;OAKG;IACH,MAAM,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM;IAS/B;;;;;;OAMG;IACH,YAAY,IAAI,MAAM;CAOvB"}
@@ -0,0 +1,19 @@
1
+ export interface ConnectionInfo {
2
+ pid: number;
3
+ username: string;
4
+ database: string;
5
+ applicationName: string;
6
+ clientAddr: string | null;
7
+ clientPort: number;
8
+ backendStart: Date | null;
9
+ xactStart: Date | null;
10
+ queryStart: Date | null;
11
+ stateChange: Date | null;
12
+ state: string;
13
+ query: string;
14
+ backendType: string;
15
+ }
16
+ export declare function registerConnection(info: ConnectionInfo): void;
17
+ export declare function unregisterConnection(pid: number): void;
18
+ export declare function getAllConnections(): ConnectionInfo[];
19
+ //# sourceMappingURL=connection-registry.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"connection-registry.d.ts","sourceRoot":"","sources":["../../../src/pg-compat/connection-registry.ts"],"names":[],"mappings":"AASA,MAAM,WAAW,cAAc;IAC7B,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,IAAI,GAAG,IAAI,CAAC;IAC1B,SAAS,EAAE,IAAI,GAAG,IAAI,CAAC;IACvB,UAAU,EAAE,IAAI,GAAG,IAAI,CAAC;IACxB,WAAW,EAAE,IAAI,GAAG,IAAI,CAAC;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;CACrB;AAID,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,cAAc,GAAG,IAAI,CAE7D;AAED,wBAAgB,oBAAoB,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,CAEtD;AAED,wBAAgB,iBAAiB,IAAI,cAAc,EAAE,CAEpD"}
@@ -0,0 +1,34 @@
1
+ import type { Engine } from "@jaepil/uqa";
2
+ import type { OIDAllocator } from "./oid.js";
3
+ type Row = Record<string, unknown>;
4
+ type BuildResult = [string[], Row[]];
5
+ export declare class InformationSchemaProvider {
6
+ private static readonly _VIEWS;
7
+ static supportedViews(): string[];
8
+ static build(viewName: string, engine: Engine, oids: OIDAllocator): BuildResult;
9
+ private static _buildSchemata;
10
+ private static _buildTables;
11
+ private static _buildColumns;
12
+ private static _buildTableConstraints;
13
+ private static _buildKeyColumnUsage;
14
+ private static _buildReferentialConstraints;
15
+ private static _buildConstraintColumnUsage;
16
+ private static _buildCheckConstraints;
17
+ private static _buildViews;
18
+ private static _buildSequences;
19
+ private static _buildRoutines;
20
+ private static _buildParameters;
21
+ private static _buildForeignTables;
22
+ private static _buildForeignServers;
23
+ private static _buildForeignServerOptions;
24
+ private static _buildForeignTableOptions;
25
+ private static _buildEnabledRoles;
26
+ private static _buildApplicableRoles;
27
+ private static _buildCharacterSets;
28
+ private static _buildCollations;
29
+ private static _buildDomains;
30
+ private static _buildElementTypes;
31
+ private static _buildTriggers;
32
+ }
33
+ export {};
34
+ //# sourceMappingURL=information-schema.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"information-schema.d.ts","sourceRoot":"","sources":["../../../src/pg-compat/information-schema.ts"],"names":[],"mappings":"AAYA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAC1C,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAU7C,KAAK,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;AACnC,KAAK,WAAW,GAAG,CAAC,MAAM,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC;AA2HrC,qBAAa,yBAAyB;IACpC,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,MAAM,CAwB5B;IAEF,MAAM,CAAC,cAAc,IAAI,MAAM,EAAE;IAIjC,MAAM,CAAC,KAAK,CAAC,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,YAAY,GAAG,WAAW;IAY/E,OAAO,CAAC,MAAM,CAAC,cAAc;IAiD7B,OAAO,CAAC,MAAM,CAAC,YAAY;IA+E3B,OAAO,CAAC,MAAM,CAAC,aAAa;IA2M5B,OAAO,CAAC,MAAM,CAAC,sBAAsB;IAoGrC,OAAO,CAAC,MAAM,CAAC,oBAAoB;IAiFnC,OAAO,CAAC,MAAM,CAAC,4BAA4B;IAmD3C,OAAO,CAAC,MAAM,CAAC,2BAA2B;IAiE1C,OAAO,CAAC,MAAM,CAAC,sBAAsB;IA6CrC,OAAO,CAAC,MAAM,CAAC,WAAW;IAwC1B,OAAO,CAAC,MAAM,CAAC,eAAe;IA6C9B,OAAO,CAAC,MAAM,CAAC,cAAc;IA4B7B,OAAO,CAAC,MAAM,CAAC,gBAAgB;IAuB/B,OAAO,CAAC,MAAM,CAAC,mBAAmB;IA+BlC,OAAO,CAAC,MAAM,CAAC,oBAAoB;IAmCnC,OAAO,CAAC,MAAM,CAAC,0BAA0B;IA+BzC,OAAO,CAAC,MAAM,CAAC,yBAAyB;IAiCxC,OAAO,CAAC,MAAM,CAAC,kBAAkB;IAWjC,OAAO,CAAC,MAAM,CAAC,qBAAqB;IAcpC,OAAO,CAAC,MAAM,CAAC,mBAAmB;IAmClC,OAAO,CAAC,MAAM,CAAC,gBAAgB;IA2B/B,OAAO,CAAC,MAAM,CAAC,aAAa;IAoB5B,OAAO,CAAC,MAAM,CAAC,kBAAkB;IAmDjC,OAAO,CAAC,MAAM,CAAC,cAAc;CAoB9B"}
@@ -0,0 +1,48 @@
1
+ import type { Engine } from "@jaepil/uqa";
2
+ export declare const TYPE_OIDS: Readonly<Record<string, number>>;
3
+ export declare const ARRAY_TYPE_OIDS: Readonly<Record<number, number>>;
4
+ export declare const SCHEMA_OIDS: Readonly<Record<string, number>>;
5
+ export declare const DATABASE_OID = 1;
6
+ export declare const ROLE_OID = 10;
7
+ export declare const AM_BTREE = 403;
8
+ export declare const AM_HASH = 405;
9
+ export declare const AM_GIST = 783;
10
+ export declare const AM_GIN = 2742;
11
+ export declare const AM_BRIN = 3580;
12
+ export declare const AM_HEAP = 2;
13
+ export declare const AM_HNSW = 16386;
14
+ export declare const AM_IVF = 16387;
15
+ export declare const CLASS_PG_CLASS = 1259;
16
+ export declare const CLASS_PG_TYPE = 1247;
17
+ export declare const CLASS_PG_NAMESPACE = 2615;
18
+ export declare const CLASS_PG_CONSTRAINT = 2606;
19
+ export declare const CLASS_PG_INDEX = 2610;
20
+ export declare const CLASS_PG_ATTRDEF = 2604;
21
+ export declare const CLASS_PG_AM = 2601;
22
+ export declare const CLASS_PG_PROC = 1255;
23
+ export declare const CANONICAL_TYPE_NAMES: Readonly<Record<string, string>>;
24
+ export declare const TYPE_LENGTHS: Readonly<Record<number, number>>;
25
+ export declare const TYPE_CATEGORIES: Readonly<Record<number, string>>;
26
+ export declare const TYPE_BYVAL: Readonly<Record<number, boolean>>;
27
+ export declare const TYPE_ALIGN: Readonly<Record<number, string>>;
28
+ export declare const TYPE_STORAGE: Readonly<Record<number, string>>;
29
+ export declare function typeOid(typeName: string): number;
30
+ export declare function canonicalTypeName(typeName: string): string;
31
+ export declare function typeLength(typeName: string): number;
32
+ export declare function numericPrecision(typeName: string): number | null;
33
+ export declare function numericScale(typeName: string): number | null;
34
+ export declare function numericPrecisionRadix(typeName: string): number | null;
35
+ export declare function characterMaximumLength(_typeName: string): number | null;
36
+ export declare function characterOctetLength(typeName: string): number | null;
37
+ export declare class OIDAllocator {
38
+ private _map;
39
+ private _next;
40
+ constructor(engine: Engine);
41
+ private _alloc;
42
+ private _build;
43
+ get(category: string, name: string): number | null;
44
+ getOrAlloc(category: string, name: string): number;
45
+ relationOid(name: string, _engine: Engine): number | null;
46
+ allByCategory(category: string): Map<string, number>;
47
+ }
48
+ //# sourceMappingURL=oid.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"oid.d.ts","sourceRoot":"","sources":["../../../src/pg-compat/oid.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,45 @@
1
+ import type { Engine } from "@jaepil/uqa";
2
+ import type { OIDAllocator } from "./oid.js";
3
+ type Row = Record<string, unknown>;
4
+ type BuildResult = [string[], Row[]];
5
+ export declare class PGCatalogProvider {
6
+ private static readonly _TABLES;
7
+ static supportedTables(): string[];
8
+ static build(tableName: string, engine: Engine, oids: OIDAllocator): BuildResult;
9
+ private static _buildPgNamespace;
10
+ private static _buildPgClass;
11
+ private static _buildPgAttribute;
12
+ private static _buildPgType;
13
+ private static _buildPgConstraint;
14
+ private static _buildPgIndex;
15
+ private static _buildPgAttrdef;
16
+ private static _buildPgAm;
17
+ private static _buildPgDatabase;
18
+ private static _buildPgRoles;
19
+ private static _buildPgUser;
20
+ private static _buildPgTables;
21
+ private static _buildPgViews;
22
+ private static _buildPgIndexes;
23
+ private static _buildPgMatviews;
24
+ private static _buildPgSequences;
25
+ private static _buildPgSettings;
26
+ private static _buildPgForeignServer;
27
+ private static _buildPgForeignTable;
28
+ private static _buildPgForeignDataWrapper;
29
+ private static _buildPgDescription;
30
+ private static _buildPgDepend;
31
+ private static _buildPgStatUserTables;
32
+ private static _buildPgStatUserIndexes;
33
+ private static _buildPgStatActivity;
34
+ private static _buildPgProc;
35
+ private static _buildPgExtension;
36
+ private static _buildPgCollation;
37
+ private static _buildPgEnum;
38
+ private static _buildPgInherits;
39
+ private static _buildPgTrigger;
40
+ private static _buildPgStatioUserTables;
41
+ private static _buildPgAuthMembers;
42
+ private static _buildPgAvailableExtensions;
43
+ }
44
+ export {};
45
+ //# sourceMappingURL=pg-catalog.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pg-catalog.d.ts","sourceRoot":"","sources":["../../../src/pg-compat/pg-catalog.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAiB1C,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,UAAU,CAAC;AAG7C,KAAK,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;AACnC,KAAK,WAAW,GAAG,CAAC,MAAM,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC;AAyJrC,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,OAAO,CAoC7B;IAEF,MAAM,CAAC,eAAe,IAAI,MAAM,EAAE;IAIlC,MAAM,CAAC,KAAK,CAAC,SAAS,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,YAAY,GAAG,WAAW;IAYhF,OAAO,CAAC,MAAM,CAAC,iBAAiB;IAgChC,OAAO,CAAC,MAAM,CAAC,aAAa;IA6K5B,OAAO,CAAC,MAAM,CAAC,iBAAiB;IAkLhC,OAAO,CAAC,MAAM,CAAC,YAAY;IA0N3B,OAAO,CAAC,MAAM,CAAC,kBAAkB;IA4MjC,OAAO,CAAC,MAAM,CAAC,aAAa;IA6J5B,OAAO,CAAC,MAAM,CAAC,eAAe;IAyC9B,OAAO,CAAC,MAAM,CAAC,UAAU;IA4CzB,OAAO,CAAC,MAAM,CAAC,gBAAgB;IAiD/B,OAAO,CAAC,MAAM,CAAC,aAAa;IA2C5B,OAAO,CAAC,MAAM,CAAC,YAAY;IAmC3B,OAAO,CAAC,MAAM,CAAC,cAAc;IAqC7B,OAAO,CAAC,MAAM,CAAC,aAAa;IAqB5B,OAAO,CAAC,MAAM,CAAC,eAAe;IAyD9B,OAAO,CAAC,MAAM,CAAC,gBAAgB;IAoB/B,OAAO,CAAC,MAAM,CAAC,iBAAiB;IAyChC,OAAO,CAAC,MAAM,CAAC,gBAAgB;IAgZ/B,OAAO,CAAC,MAAM,CAAC,qBAAqB;IAwCpC,OAAO,CAAC,MAAM,CAAC,oBAAoB;IA0BnC,OAAO,CAAC,MAAM,CAAC,0BAA0B;IAqCzC,OAAO,CAAC,MAAM,CAAC,mBAAmB;IAalC,OAAO,CAAC,MAAM,CAAC,cAAc;IAuB7B,OAAO,CAAC,MAAM,CAAC,sBAAsB;IAoErC,OAAO,CAAC,MAAM,CAAC,uBAAuB;IA0DtC,OAAO,CAAC,MAAM,CAAC,oBAAoB;IA6FnC,OAAO,CAAC,MAAM,CAAC,YAAY;IA+F3B,OAAO,CAAC,MAAM,CAAC,iBAAiB;IAiChC,OAAO,CAAC,MAAM,CAAC,iBAAiB;IAqEhC,OAAO,CAAC,MAAM,CAAC,YAAY;IAY3B,OAAO,CAAC,MAAM,CAAC,gBAAgB;IAY/B,OAAO,CAAC,MAAM,CAAC,eAAe;IAgC9B,OAAO,CAAC,MAAM,CAAC,wBAAwB;IAyCvC,OAAO,CAAC,MAAM,CAAC,mBAAmB;IAoBlC,OAAO,CAAC,MAAM,CAAC,2BAA2B;CAe3C"}