forked from drizzle-team/drizzle-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added singlestore docker image to integration tests
- Loading branch information
1 parent
af46b53
commit 028d923
Showing
67 changed files
with
20,825 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from './index' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
module.exports = { ...require('.') } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from './default' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,179 @@ | ||
|
||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
|
||
const { | ||
PrismaClientKnownRequestError, | ||
PrismaClientUnknownRequestError, | ||
PrismaClientRustPanicError, | ||
PrismaClientInitializationError, | ||
PrismaClientValidationError, | ||
NotFoundError, | ||
getPrismaClient, | ||
sqltag, | ||
empty, | ||
join, | ||
raw, | ||
Decimal, | ||
Debug, | ||
objectEnumValues, | ||
makeStrictEnum, | ||
Extensions, | ||
warnOnce, | ||
defineDmmfProperty, | ||
Public, | ||
getRuntime | ||
} = require('./runtime/edge.js') | ||
|
||
|
||
const Prisma = {} | ||
|
||
exports.Prisma = Prisma | ||
exports.$Enums = {} | ||
|
||
/** | ||
* Prisma Client JS version: 5.14.0 | ||
* Query Engine version: e9771e62de70f79a5e1c604a2d7c8e2a0a874b48 | ||
*/ | ||
Prisma.prismaVersion = { | ||
client: "5.14.0", | ||
engine: "e9771e62de70f79a5e1c604a2d7c8e2a0a874b48" | ||
} | ||
|
||
Prisma.PrismaClientKnownRequestError = PrismaClientKnownRequestError; | ||
Prisma.PrismaClientUnknownRequestError = PrismaClientUnknownRequestError | ||
Prisma.PrismaClientRustPanicError = PrismaClientRustPanicError | ||
Prisma.PrismaClientInitializationError = PrismaClientInitializationError | ||
Prisma.PrismaClientValidationError = PrismaClientValidationError | ||
Prisma.NotFoundError = NotFoundError | ||
Prisma.Decimal = Decimal | ||
|
||
/** | ||
* Re-export of sql-template-tag | ||
*/ | ||
Prisma.sql = sqltag | ||
Prisma.empty = empty | ||
Prisma.join = join | ||
Prisma.raw = raw | ||
Prisma.validator = Public.validator | ||
|
||
/** | ||
* Extensions | ||
*/ | ||
Prisma.getExtensionContext = Extensions.getExtensionContext | ||
Prisma.defineExtension = Extensions.defineExtension | ||
|
||
/** | ||
* Shorthand utilities for JSON filtering | ||
*/ | ||
Prisma.DbNull = objectEnumValues.instances.DbNull | ||
Prisma.JsonNull = objectEnumValues.instances.JsonNull | ||
Prisma.AnyNull = objectEnumValues.instances.AnyNull | ||
|
||
Prisma.NullTypes = { | ||
DbNull: objectEnumValues.classes.DbNull, | ||
JsonNull: objectEnumValues.classes.JsonNull, | ||
AnyNull: objectEnumValues.classes.AnyNull | ||
} | ||
|
||
|
||
|
||
/** | ||
* Enums | ||
*/ | ||
exports.Prisma.TransactionIsolationLevel = makeStrictEnum({ | ||
ReadUncommitted: 'ReadUncommitted', | ||
ReadCommitted: 'ReadCommitted', | ||
RepeatableRead: 'RepeatableRead', | ||
Serializable: 'Serializable' | ||
}); | ||
|
||
exports.Prisma.UserScalarFieldEnum = { | ||
id: 'id', | ||
email: 'email', | ||
name: 'name' | ||
}; | ||
|
||
exports.Prisma.SortOrder = { | ||
asc: 'asc', | ||
desc: 'desc' | ||
}; | ||
|
||
exports.Prisma.NullsOrder = { | ||
first: 'first', | ||
last: 'last' | ||
}; | ||
|
||
|
||
exports.Prisma.ModelName = { | ||
User: 'User' | ||
}; | ||
/** | ||
* Create the Client | ||
*/ | ||
const config = { | ||
"generator": { | ||
"name": "client", | ||
"provider": { | ||
"fromEnvVar": null, | ||
"value": "prisma-client-js" | ||
}, | ||
"output": { | ||
"value": "/home/prodrigues/Desktop/summer-hackathon-s2-drizzle-orm/integration-tests/tests/prisma/mysql/client", | ||
"fromEnvVar": null | ||
}, | ||
"config": { | ||
"engineType": "library" | ||
}, | ||
"binaryTargets": [ | ||
{ | ||
"fromEnvVar": null, | ||
"value": "debian-openssl-3.0.x", | ||
"native": true | ||
} | ||
], | ||
"previewFeatures": [], | ||
"isCustomOutput": true | ||
}, | ||
"relativeEnvPaths": { | ||
"rootEnvPath": null | ||
}, | ||
"relativePath": "..", | ||
"clientVersion": "5.14.0", | ||
"engineVersion": "e9771e62de70f79a5e1c604a2d7c8e2a0a874b48", | ||
"datasourceNames": [ | ||
"db" | ||
], | ||
"activeProvider": "mysql", | ||
"postinstall": false, | ||
"inlineDatasources": { | ||
"db": { | ||
"url": { | ||
"fromEnvVar": "MYSQL_CONNECTION_STRING", | ||
"value": null | ||
} | ||
} | ||
}, | ||
"inlineSchema": "generator client {\n provider = \"prisma-client-js\"\n output = \"./client\"\n}\n\ngenerator drizzle {\n provider = \"drizzle-prisma-generator\"\n output = \"./drizzle\"\n}\n\ndatasource db {\n provider = \"mysql\"\n url = env(\"MYSQL_CONNECTION_STRING\")\n}\n\nmodel User {\n id Int @id @default(autoincrement())\n email String @unique\n name String?\n}\n", | ||
"inlineSchemaHash": "6e8dd18636337105b6f81492024552e63b9b9a29a0cadb79231c945267c145fa", | ||
"copyEngine": true | ||
} | ||
config.dirname = '/' | ||
|
||
config.runtimeDataModel = JSON.parse("{\"models\":{\"User\":{\"dbName\":null,\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":true,\"isReadOnly\":false,\"hasDefaultValue\":true,\"type\":\"Int\",\"default\":{\"name\":\"autoincrement\",\"args\":[]},\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"email\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":true,\"isId\":false,\"isReadOnly\":false,\"hasDefaultValue\":false,\"type\":\"String\",\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"name\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"hasDefaultValue\":false,\"type\":\"String\",\"isGenerated\":false,\"isUpdatedAt\":false}],\"primaryKey\":null,\"uniqueFields\":[],\"uniqueIndexes\":[],\"isGenerated\":false}},\"enums\":{},\"types\":{}}") | ||
defineDmmfProperty(exports.Prisma, config.runtimeDataModel) | ||
config.engineWasm = undefined | ||
|
||
config.injectableEdgeEnv = () => ({ | ||
parsed: { | ||
MYSQL_CONNECTION_STRING: typeof globalThis !== 'undefined' && globalThis['MYSQL_CONNECTION_STRING'] || typeof process !== 'undefined' && process.env && process.env.MYSQL_CONNECTION_STRING || undefined | ||
} | ||
}) | ||
|
||
if (typeof globalThis !== 'undefined' && globalThis['DEBUG'] || typeof process !== 'undefined' && process.env && process.env.DEBUG || undefined) { | ||
Debug.enable(typeof globalThis !== 'undefined' && globalThis['DEBUG'] || typeof process !== 'undefined' && process.env && process.env.DEBUG || undefined) | ||
} | ||
|
||
const PrismaClient = getPrismaClient(config) | ||
exports.PrismaClient = PrismaClient | ||
Object.assign(exports, Prisma) | ||
|
172 changes: 172 additions & 0 deletions
172
integration-tests/tests/prisma/mysql/client/index-browser.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,172 @@ | ||
|
||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
|
||
const { | ||
Decimal, | ||
objectEnumValues, | ||
makeStrictEnum, | ||
Public, | ||
getRuntime, | ||
} = require('./runtime/index-browser.js') | ||
|
||
|
||
const Prisma = {} | ||
|
||
exports.Prisma = Prisma | ||
exports.$Enums = {} | ||
|
||
/** | ||
* Prisma Client JS version: 5.14.0 | ||
* Query Engine version: e9771e62de70f79a5e1c604a2d7c8e2a0a874b48 | ||
*/ | ||
Prisma.prismaVersion = { | ||
client: "5.14.0", | ||
engine: "e9771e62de70f79a5e1c604a2d7c8e2a0a874b48" | ||
} | ||
|
||
Prisma.PrismaClientKnownRequestError = () => { | ||
const runtimeName = getRuntime().prettyName; | ||
throw new Error(`PrismaClientKnownRequestError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}). | ||
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`, | ||
)}; | ||
Prisma.PrismaClientUnknownRequestError = () => { | ||
const runtimeName = getRuntime().prettyName; | ||
throw new Error(`PrismaClientUnknownRequestError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}). | ||
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`, | ||
)} | ||
Prisma.PrismaClientRustPanicError = () => { | ||
const runtimeName = getRuntime().prettyName; | ||
throw new Error(`PrismaClientRustPanicError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}). | ||
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`, | ||
)} | ||
Prisma.PrismaClientInitializationError = () => { | ||
const runtimeName = getRuntime().prettyName; | ||
throw new Error(`PrismaClientInitializationError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}). | ||
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`, | ||
)} | ||
Prisma.PrismaClientValidationError = () => { | ||
const runtimeName = getRuntime().prettyName; | ||
throw new Error(`PrismaClientValidationError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}). | ||
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`, | ||
)} | ||
Prisma.NotFoundError = () => { | ||
const runtimeName = getRuntime().prettyName; | ||
throw new Error(`NotFoundError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}). | ||
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`, | ||
)} | ||
Prisma.Decimal = Decimal | ||
|
||
/** | ||
* Re-export of sql-template-tag | ||
*/ | ||
Prisma.sql = () => { | ||
const runtimeName = getRuntime().prettyName; | ||
throw new Error(`sqltag is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}). | ||
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`, | ||
)} | ||
Prisma.empty = () => { | ||
const runtimeName = getRuntime().prettyName; | ||
throw new Error(`empty is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}). | ||
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`, | ||
)} | ||
Prisma.join = () => { | ||
const runtimeName = getRuntime().prettyName; | ||
throw new Error(`join is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}). | ||
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`, | ||
)} | ||
Prisma.raw = () => { | ||
const runtimeName = getRuntime().prettyName; | ||
throw new Error(`raw is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}). | ||
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`, | ||
)} | ||
Prisma.validator = Public.validator | ||
|
||
/** | ||
* Extensions | ||
*/ | ||
Prisma.getExtensionContext = () => { | ||
const runtimeName = getRuntime().prettyName; | ||
throw new Error(`Extensions.getExtensionContext is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}). | ||
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`, | ||
)} | ||
Prisma.defineExtension = () => { | ||
const runtimeName = getRuntime().prettyName; | ||
throw new Error(`Extensions.defineExtension is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}). | ||
In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`, | ||
)} | ||
|
||
/** | ||
* Shorthand utilities for JSON filtering | ||
*/ | ||
Prisma.DbNull = objectEnumValues.instances.DbNull | ||
Prisma.JsonNull = objectEnumValues.instances.JsonNull | ||
Prisma.AnyNull = objectEnumValues.instances.AnyNull | ||
|
||
Prisma.NullTypes = { | ||
DbNull: objectEnumValues.classes.DbNull, | ||
JsonNull: objectEnumValues.classes.JsonNull, | ||
AnyNull: objectEnumValues.classes.AnyNull | ||
} | ||
|
||
/** | ||
* Enums | ||
*/ | ||
|
||
exports.Prisma.TransactionIsolationLevel = makeStrictEnum({ | ||
ReadUncommitted: 'ReadUncommitted', | ||
ReadCommitted: 'ReadCommitted', | ||
RepeatableRead: 'RepeatableRead', | ||
Serializable: 'Serializable' | ||
}); | ||
|
||
exports.Prisma.UserScalarFieldEnum = { | ||
id: 'id', | ||
email: 'email', | ||
name: 'name' | ||
}; | ||
|
||
exports.Prisma.SortOrder = { | ||
asc: 'asc', | ||
desc: 'desc' | ||
}; | ||
|
||
exports.Prisma.NullsOrder = { | ||
first: 'first', | ||
last: 'last' | ||
}; | ||
|
||
|
||
exports.Prisma.ModelName = { | ||
User: 'User' | ||
}; | ||
|
||
/** | ||
* This is a stub Prisma Client that will error at runtime if called. | ||
*/ | ||
class PrismaClient { | ||
constructor() { | ||
return new Proxy(this, { | ||
get(target, prop) { | ||
let message | ||
const runtime = getRuntime() | ||
if (runtime.isEdge) { | ||
message = `PrismaClient is not configured to run in ${runtime.prettyName}. In order to run Prisma Client on edge runtime, either: | ||
- Use Prisma Accelerate: https://pris.ly/d/accelerate | ||
- Use Driver Adapters: https://pris.ly/d/driver-adapters | ||
`; | ||
} else { | ||
message = 'PrismaClient is unable to run in this browser environment, or has been bundled for the browser (running in `' + runtime.prettyName + '`).' | ||
} | ||
|
||
message += ` | ||
If this is unexpected, please open an issue: https://pris.ly/prisma-prisma-bug-report` | ||
|
||
throw new Error(message) | ||
} | ||
}) | ||
} | ||
} | ||
|
||
exports.PrismaClient = PrismaClient | ||
|
||
Object.assign(exports, Prisma) |
Oops, something went wrong.