1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
R version 3.3.1 (2016-06-21) -- "Bug in Your Hair"
Copyright (C) 2016 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.
R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.
Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.
>
> ## dbExistsq test with schema name: reported as Issue 28 at
> ## http://code.google.com/p/rpostgresql/issues/detail?id=28
> ##
> ## Assumes that
> ## a) PostgreSQL is running, and
> ## b) the current user can connect
> ## both of which are not viable for release but suitable while we test
> ##
> ## Dirk Eddelbuettel, 10 Sep 2009
>
> ## only run this if this env.var is set correctly
> if (Sys.getenv("POSTGRES_USER") != "" & Sys.getenv("POSTGRES_HOST") != "" & Sys.getenv("POSTGRES_DATABASE") != "") {
+
+ ## try to load our module and abort if this fails
+ stopifnot(require(RPostgreSQL))
+ stopifnot(require(datasets))
+
+ ## load the PostgresSQL driver
+ drv <- dbDriver("PostgreSQL")
+
+ ## connect to the default db
+ con <- dbConnect(drv,
+ user=Sys.getenv("POSTGRES_USER"),
+ password=Sys.getenv("POSTGRES_PASSWD"),
+ host=Sys.getenv("POSTGRES_HOST"),
+ dbname=Sys.getenv("POSTGRES_DATABASE"),
+ port=ifelse((p<-Sys.getenv("POSTGRES_PORT"))!="", p, 5432))
+
+ if (dbExistsTable(con, "rock.data")) {
+ cat("Removing rock'data\n")
+ dbRemoveTable(con, "rock.data")
+ }
+
+
+ dbWriteTable(con, "rock.data", rock)
+ ## run a simple dbExists
+ cat("Does rock.data exist? \n")
+ res <- dbExistsTable(con, "rock.data")
+ if(res){
+ cat("PASS: true\n")
+ }else{
+ cat("FAIL: false\n")
+ }
+
+ ##
+ cat("create schema testschema and change the search_path\n")
+
+ dbGetQuery(con, 'CREATE SCHEMA testschema')
+ dbGetQuery(con, 'SET search_path TO testschema')
+ cat("Does rock.data exist? \n")
+ res <- dbExistsTable(con, "rock.data")
+ if(res){
+ cat("FAIL: true despite search_path change\n")
+ }else{
+ cat("PASS: false as the search_path changed\n")
+ }
+
+ cat("Does testschema.\"rock.data\" exist? \n")
+ res <- dbExistsTable(con, c('testschema', "rock.data"))
+ if(res){
+ cat("FAIL: true despite testschema specified\n")
+ }else{
+ cat("PASS: false as the testschema specified\n")
+ }
+
+ cat("Does public.\"rock.data\" exist? \n")
+ res <- dbExistsTable(con, c('public', "rock.data"))
+ if(res){
+ cat("PASS: true despite search_path change\n")
+ }else{
+ cat("FAIL: false as the search_path changed\n")
+ }
+
+
+ cat("write in current schema\n")
+ dbWriteTable(con, "rock.data", rock)
+ cat("Does rock.data exist? \n")
+ res <- dbExistsTable(con, "rock.data")
+ if(res){
+ cat("PASS: true\n")
+ }else{
+ cat("FAIL: false\n")
+ }
+
+ ## cleanup
+ dbGetQuery(con, 'DROP TABLE "public"."rock.data"')
+ dbGetQuery(con, 'DROP TABLE "testschema"."rock.data"')
+ dbGetQuery(con, 'DROP schema "testschema"')
+
+ ## and disconnect
+ dbDisconnect(con)
+ }
Loading required package: RPostgreSQL
Loading required package: DBI
Does rock.data exist?
PASS: true
create schema testschema and change the search_path
Does rock.data exist?
PASS: false as the search_path changed
Does testschema."rock.data" exist?
PASS: false as the testschema specified
Does public."rock.data" exist?
PASS: true despite search_path change
write in current schema
Does rock.data exist?
PASS: true
[1] TRUE
>
> proc.time()
user system elapsed
0.512 0.048 0.663
|